Index: firmware/.launches/HD.launch =================================================================== diff -u -rab38979e1e1c2a00d8eadcabecb06d11f1f9111c -r9d4666bf3064df18a6d935125d7a69e4e8234e84 --- firmware/.launches/HD.launch (.../HD.launch) (revision ab38979e1e1c2a00d8eadcabecb06d11f1f9111c) +++ firmware/.launches/HD.launch (.../HD.launch) (revision 9d4666bf3064df18a6d935125d7a69e4e8234e84) @@ -7,6 +7,7 @@ + @@ -20,9 +21,12 @@ + + + Index: firmware/App/Controllers/BloodFlow.c =================================================================== diff -u -r6463655c18b173e335b6d475ac7289336f1bf092 -r9d4666bf3064df18a6d935125d7a69e4e8234e84 --- firmware/App/Controllers/BloodFlow.c (.../BloodFlow.c) (revision 6463655c18b173e335b6d475ac7289336f1bf092) +++ firmware/App/Controllers/BloodFlow.c (.../BloodFlow.c) (revision 9d4666bf3064df18a6d935125d7a69e4e8234e84) @@ -1,4 +1,4 @@ -/************************************************************************** +/**********************************************************************//** * * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. * @@ -31,105 +31,119 @@ #include "Timers.h" #include "BloodFlow.h" +/** + * @addtogroup BloodFlow + * @{ + */ + // ********** private definitions ********** -#define BLOOD_FLOW_DATA_PUB_INTERVAL ( MS_PER_SECOND / TASK_PRIORITY_INTERVAL ) // interval (ms/task time) at which the blood flow data is published on the CAN bus +#define BLOOD_FLOW_DATA_PUB_INTERVAL ( MS_PER_SECOND / TASK_PRIORITY_INTERVAL ) ///< interval (ms/task time) at which the blood flow data is published on the CAN bus -#define MAX_BLOOD_PUMP_PWM_STEP_CHANGE 0.01 // max duty cycle change when ramping -#define MAX_BLOOD_PUMP_PWM_DUTY_CYCLE 0.88 // controller will error if PWM duty cycle > 90%, so set max to 88% -#define MIN_BLOOD_PUMP_PWM_DUTY_CYCLE 0.12 // controller will error if PWM duty cycle < 10%, so set min to 12% +#define MAX_BLOOD_PUMP_PWM_STEP_CHANGE 0.01 ///< max duty cycle change when ramping +#define MAX_BLOOD_PUMP_PWM_DUTY_CYCLE 0.88 ///< controller will error if PWM duty cycle > 90%, so set max to 88% +#define MIN_BLOOD_PUMP_PWM_DUTY_CYCLE 0.12 ///< controller will error if PWM duty cycle < 10%, so set min to 12% -#define BP_CONTROL_INTERVAL ( 1000 / TASK_GENERAL_INTERVAL ) // interval (ms/task time) at which the blood pump is controlled -#define BP_P_COEFFICIENT 0.00005 // P term for blood pump control -#define BP_I_COEFFICIENT 0.00015 // I term for blood pump control +#define BP_CONTROL_INTERVAL ( 1000 / TASK_GENERAL_INTERVAL ) ///< interval (ms/task time) at which the blood pump is controlled +#define BP_P_COEFFICIENT 0.00005 ///< P term for blood pump control +#define BP_I_COEFFICIENT 0.00015 ///< I term for blood pump control -#define BP_MAX_CURR_WHEN_STOPPED_MA 150.0 // motor controller current should not exceed this when pump should be stopped -#define BP_MIN_CURR_WHEN_RUNNING_MA 150.0 // motor controller current should always exceed this when pump should be running -#define BP_MAX_CURR_WHEN_RUNNING_MA 1000.0 // motor controller current should not exceed this when pump should be running -#define BP_MAX_CURR_ERROR_DURATION_MS 2000 // motor controller current errors persisting beyond this duration will trigger an alarm +#define BP_HOME_RATE 50 ///< target pump speed (in estimate mL/min) for homing. +#define BP_HOME_TIMEOUT_MS 10000 ///< maximum time allowed for homing to complete (in ms). -#define BP_SPEED_ADC_TO_RPM_FACTOR 1.280938 // conversion factor from ADC counts to RPM for blood pump motor -#define BP_CURRENT_ADC_TO_MA_FACTOR 3.002 // conversion factor from ADC counts to mA for blood pump motor +#define BP_MAX_CURR_WHEN_STOPPED_MA 150.0 ///< motor controller current should not exceed this when pump should be stopped +#define BP_MIN_CURR_WHEN_RUNNING_MA 150.0 ///< motor controller current should always exceed this when pump should be running +#define BP_MAX_CURR_WHEN_RUNNING_MA 1000.0 ///< motor controller current should not exceed this when pump should be running +#define BP_MAX_CURR_ERROR_DURATION_MS 2000 ///< motor controller current errors persisting beyond this duration will trigger an alarm -#define BP_REV_PER_LITER 150.24 // rotor revolutions per liter -#define BP_ML_PER_MIN_TO_PUMP_RPM_FACTOR ( BP_REV_PER_LITER / ML_PER_LITER ) -#define BP_GEAR_RATIO 32.0 // blood pump motor to blood pump gear ratio -#define BP_MOTOR_RPM_TO_PWM_DC_FACTOR 0.00035 // ~28 BP motor RPM = 1% PWM duty cycle -#define BP_PWM_ZERO_OFFSET 0.1 // 10% PWM duty cycle = zero speed -#define BP_PWM_FROM_ML_PER_MIN(rate) ( (rate) * BP_ML_PER_MIN_TO_PUMP_RPM_FACTOR * BP_GEAR_RATIO * BP_MOTOR_RPM_TO_PWM_DC_FACTOR + BP_PWM_ZERO_OFFSET ) +#define BP_SPEED_ADC_TO_RPM_FACTOR 1.280938 ///< conversion factor from ADC counts to RPM for blood pump motor +#define BP_CURRENT_ADC_TO_MA_FACTOR 3.002 ///< conversion factor from ADC counts to mA for blood pump motor -#define BLOODPUMP_ADC_FULL_SCALE_V 3.0 // BP analog signals are 0-3V (while int. ADC ref may be different) -#define BLOODPUMP_ADC_ZERO ( (F32)( INT_ADC_ZERO ) * ( BLOODPUMP_ADC_FULL_SCALE_V / INT_ADC_REF_V ) ) -#define SIGN_FROM_12_BIT_VALUE(v) ( (S16)(v) - (S16)BLOODPUMP_ADC_ZERO ) +#define BP_REV_PER_LITER 150.24 ///< rotor revolutions per liter +#define BP_ML_PER_MIN_TO_PUMP_RPM_FACTOR ( BP_REV_PER_LITER / ML_PER_LITER ) ///< conversion factor from mL/min to motor RPM. +#define BP_GEAR_RATIO 32.0 ///< blood pump motor to blood pump gear ratio +#define BP_MOTOR_RPM_TO_PWM_DC_FACTOR 0.00035 ///< ~28 BP motor RPM = 1% PWM duty cycle +#define BP_PWM_ZERO_OFFSET 0.1 ///< 10% PWM duty cycle = zero speed +#define BP_PWM_FROM_ML_PER_MIN(rate) ( (rate) * BP_ML_PER_MIN_TO_PUMP_RPM_FACTOR * BP_GEAR_RATIO * BP_MOTOR_RPM_TO_PWM_DC_FACTOR + BP_PWM_ZERO_OFFSET ) ///< conversion factor from mL/min to estimated PWM duty cycle %. -#define BLOOD_FLOW_SAMPLE_FREQ ( MS_PER_SECOND / TASK_PRIORITY_INTERVAL ) -#define SIZE_OF_ROLLING_AVG ( BLOOD_FLOW_SAMPLE_FREQ * 2 ) // measured blood flow is filtered w/ moving average -#define MAX_FLOW_FILTER_INTERVAL 5 // slowest sample interval for filter is every 5th sample +#define BLOODPUMP_ADC_FULL_SCALE_V 3.0 ///< BP analog signals are 0-3V (while int. ADC ref may be different) +#define BLOODPUMP_ADC_ZERO ( (F32)( INT_ADC_ZERO ) * ( BLOODPUMP_ADC_FULL_SCALE_V / INT_ADC_REF_V ) ) ///< Blood pump ADC channel zero offset. +#define SIGN_FROM_12_BIT_VALUE(v) ( (S16)(v) - (S16)BLOODPUMP_ADC_ZERO ) ///< macro converts 12 bit ADC value to signed 16-bit value. +#define BLOOD_FLOW_SAMPLE_FREQ ( MS_PER_SECOND / TASK_PRIORITY_INTERVAL ) ///< Blood flow sample frequency (in task intervals). +#define SIZE_OF_ROLLING_AVG ( BLOOD_FLOW_SAMPLE_FREQ * 2 ) ///< measured blood flow is filtered w/ moving average +#define MAX_FLOW_FILTER_INTERVAL 5 ///< slowest sample interval for filter is every 5th sample + +/// Enumeration of blood pump controller states. typedef enum BloodPump_States { - BLOOD_PUMP_OFF_STATE = 0, - BLOOD_PUMP_RAMPING_UP_STATE, - BLOOD_PUMP_RAMPING_DOWN_STATE, - BLOOD_PUMP_CONTROL_TO_TARGET_STATE, - NUM_OF_BLOOD_PUMP_STATES + BLOOD_PUMP_OFF_STATE = 0, ///< Blood pump off state. + BLOOD_PUMP_RAMPING_UP_STATE, ///< Blood pump ramping up state. + BLOOD_PUMP_RAMPING_DOWN_STATE, ///< Blood pump ramping down state. + BLOOD_PUMP_CONTROL_TO_TARGET_STATE, ///< Blood pump controlling to target state. + NUM_OF_BLOOD_PUMP_STATES ///< Number of blood pump states. } BLOOD_PUMP_STATE_T; +/// Enumeration of blood pump self test states. typedef enum BloodFlow_Self_Test_States { - BLOOD_FLOW_SELF_TEST_STATE_START = 0, - BLOOD_FLOW_TEST_STATE_IN_PROGRESS, - BLOOD_FLOW_TEST_STATE_COMPLETE, - NUM_OF_BLOOD_FLOW_SELF_TEST_STATES + BLOOD_FLOW_SELF_TEST_STATE_START = 0, ///< Blood pump self test start state. + BLOOD_FLOW_TEST_STATE_IN_PROGRESS, ///< Blood pump self test in progress state. + BLOOD_FLOW_TEST_STATE_COMPLETE, ///< Blood pump self test completed state. + NUM_OF_BLOOD_FLOW_SELF_TEST_STATES ///< Number of blood pump self test states. } BLOOD_FLOW_SELF_TEST_STATE_T; // pin assignments for pump stop and direction outputs #define STOP_CAN3_PORT_MASK 0x00000002 // (Tx - re-purposed as output GPIO for blood pump stop signal) #define DIR_CAN3_PORT_MASK 0x00000002 // (Rx - re-purposed as output GPIO for blood pump direction signal) // blood pump stop and direction macros -#define SET_BP_DIR() {canREG3->RIOC |= DIR_CAN3_PORT_MASK;} -#define CLR_BP_DIR() {canREG3->RIOC &= ~DIR_CAN3_PORT_MASK;} +#define SET_BP_DIR() {canREG3->RIOC |= DIR_CAN3_PORT_MASK;} // macro to set blood pump direction signal high. +#define CLR_BP_DIR() {canREG3->RIOC &= ~DIR_CAN3_PORT_MASK;} // macro to set blood pump direction signal low. #ifndef BREADBOARD_TARGET - #define SET_BP_STOP() {canREG3->TIOC &= ~STOP_CAN3_PORT_MASK;} - #define CLR_BP_STOP() {canREG3->TIOC |= STOP_CAN3_PORT_MASK;} + #define SET_BP_STOP() {canREG3->TIOC &= ~STOP_CAN3_PORT_MASK;} // macro to set blood pump stop signal (active low). + #define CLR_BP_STOP() {canREG3->TIOC |= STOP_CAN3_PORT_MASK;} // macro to clear blood pump stop signal (active low). #else #define SET_BP_STOP() {canREG3->TIOC |= STOP_CAN3_PORT_MASK;} #define CLR_BP_STOP() {canREG3->TIOC &= ~STOP_CAN3_PORT_MASK;} #endif // ********** private data ********** -static BLOOD_PUMP_STATE_T bloodPumpState = BLOOD_PUMP_OFF_STATE; // current state of blood flow controller state machine -static U32 bloodFlowDataPublicationTimerCounter = 0; // used to schedule blood flow data publication to CAN bus -static BOOL isBloodPumpOn = FALSE; // blood pump is currently running -static F32 bloodPumpPWMDutyCyclePct = 0.0; // initial blood pump PWM duty cycle -static F32 bloodPumpPWMDutyCyclePctSet = 0.0; // currently set blood pump PWM duty cycle -static MOTOR_DIR_T bloodPumpDirection = MOTOR_DIR_FORWARD; // requested blood flow direction -static MOTOR_DIR_T bloodPumpDirectionSet = MOTOR_DIR_FORWARD; // currently set blood flow direction +static BLOOD_PUMP_STATE_T bloodPumpState = BLOOD_PUMP_OFF_STATE; ///< current state of blood flow controller state machine +static U32 bloodFlowDataPublicationTimerCounter = 0; ///< used to schedule blood flow data publication to CAN bus +static BOOL isBloodPumpOn = FALSE; ///< blood pump is currently running +static F32 bloodPumpPWMDutyCyclePct = 0.0; ///< initial blood pump PWM duty cycle +static F32 bloodPumpPWMDutyCyclePctSet = 0.0; ///< currently set blood pump PWM duty cycle +static MOTOR_DIR_T bloodPumpDirection = MOTOR_DIR_FORWARD; ///< requested blood flow direction +static MOTOR_DIR_T bloodPumpDirectionSet = MOTOR_DIR_FORWARD; ///< currently set blood flow direction static PUMP_CONTROL_MODE_T bloodPumpControlMode = PUMP_CONTROL_MODE_CLOSED_LOOP; ///< requested blood pump control mode. static PUMP_CONTROL_MODE_T bloodPumpControlModeSet = PUMP_CONTROL_MODE_CLOSED_LOOP; ///< currently set blood pump control mode. -DATA_DECL( U32, BloodFlowDataPub, bloodFlowDataPublishInterval, BLOOD_FLOW_DATA_PUB_INTERVAL, BLOOD_FLOW_DATA_PUB_INTERVAL ); // interval (in ms) at which to publish blood flow data to CAN bus -DATA_DECL( S32, TargetBloodFlowRate, targetBloodFlowRate, 0, 0 ); // requested blood flow rate -DATA_DECL( F32, MeasuredBloodFlowRate, measuredBloodFlowRate, 0.0, 0.0 ); // measured blood flow rate -DATA_DECL( F32, MeasuredBloodPumpRotorSpeed, bloodPumpRotorSpeedRPM, 0.0, 0.0 );// measured blood pump rotor speed -DATA_DECL( F32, MeasuredBloodPumpSpeed, bloodPumpSpeedRPM, 0.0, 0.0 ); // measured blood pump motor speed -DATA_DECL( F32, MeasuredBloodPumpMCSpeed, adcBloodPumpMCSpeedRPM, 0.0, 0.0 ); // measured blood pump motor controller speed -DATA_DECL( F32, MeasuredBloodPumpMCCurrent, adcBloodPumpMCCurrentmA, 0.0, 0.0 );// measured blood pump motor controller current +static OVERRIDE_U32_T bloodFlowDataPublishInterval = { BLOOD_FLOW_DATA_PUB_INTERVAL, BLOOD_FLOW_DATA_PUB_INTERVAL, BLOOD_FLOW_DATA_PUB_INTERVAL, 0 }; ///< Interval (in ms) at which to publish blood flow data to CAN bus +static OVERRIDE_S32_T targetBloodFlowRate = { 0, 0, 0, 0 }; ///< requested blood flow rate +static OVERRIDE_F32_T measuredBloodFlowRate = { 0.0, 0.0, 0.0, 0 }; ///< measured blood flow rate +static OVERRIDE_F32_T bloodPumpRotorSpeedRPM = { 0.0, 0.0, 0.0, 0 }; ///< measured blood pump rotor speed +static OVERRIDE_F32_T bloodPumpSpeedRPM = { 0.0, 0.0, 0.0, 0 }; ///< measured blood pump motor speed +static OVERRIDE_F32_T adcBloodPumpMCSpeedRPM = { 0.0, 0.0, 0.0, 0 }; ///< measured blood pump motor controller speed +static OVERRIDE_F32_T adcBloodPumpMCCurrentmA = { 0.0, 0.0, 0.0, 0 }; ///< measured blood pump motor controller current -static U32 bpControlTimerCounter = 0; // determines when to perform control on blood flow +static U32 bpControlTimerCounter = 0; ///< determines when to perform control on blood flow -static F32 flowReadings[ SIZE_OF_ROLLING_AVG ]; // holds flow samples for a rolling average -static U32 flowReadingsIdx = 0; // index for next sample in rolling average array -static F32 flowReadingsTotal = 0.0; // rolling total - used to calc average -static U32 flowReadingsCount = 0; // # of samples in flow rolling average buffer -static U32 flowReadingsTmrCtr = 0; // determines when to add samples to filter +static U32 bpRotorRevStartTime = 0; ///< blood pump rotor rotation start time (in ms) +static BOOL bpStopAtHomePosition = FALSE; ///< stop blood pump at next home position +static U32 bpHomeStartTime = 0; ///< when did blood pump home command begin? (in ms) -static U32 bpCurrErrorDurationCtr = 0; // used for tracking persistence of bp current errors +static F32 flowReadings[ SIZE_OF_ROLLING_AVG ]; ///< holds flow samples for a rolling average +static U32 flowReadingsIdx = 0; ///< index for next sample in rolling average array +static F32 flowReadingsTotal = 0.0; ///< rolling total - used to calc average +static U32 flowReadingsCount = 0; ///< # of samples in flow rolling average buffer +static U32 flowReadingsTmrCtr = 0; ///< determines when to add samples to filter -static BLOOD_FLOW_SELF_TEST_STATE_T bloodPumpSelfTestState = BLOOD_FLOW_SELF_TEST_STATE_START; // current blood pump self test state -static U32 bloodPumpSelfTestTimerCount = 0; // timer counter for blood pump self test +static U32 bpCurrErrorDurationCtr = 0; ///< used for tracking persistence of bp current errors +static BLOOD_FLOW_SELF_TEST_STATE_T bloodPumpSelfTestState = BLOOD_FLOW_SELF_TEST_STATE_START; ///< current blood pump self test state +static U32 bloodPumpSelfTestTimerCount = 0; ///< timer counter for blood pump self test + // ********** private function prototypes ********** static BLOOD_PUMP_STATE_T handleBloodPumpOffState( void ); @@ -147,13 +161,12 @@ static void checkBloodPumpMCCurrent( void ); static DATA_GET_PROTOTYPE( U32, getPublishBloodFlowDataInterval ); -/************************************************************************* - * @brief initBloodFlow +/*********************************************************************//** + * @brief * The initBloodFlow function initializes the BloodFlow module. * @details * Inputs : none * Outputs : BloodFlow module initialized. - * @param none * @return none *************************************************************************/ void initBloodFlow( void ) @@ -170,8 +183,8 @@ MIN_BLOOD_PUMP_PWM_DUTY_CYCLE, MAX_BLOOD_PUMP_PWM_DUTY_CYCLE ); } -/************************************************************************* - * @brief setBloodPumpTargetFlowRate +/*********************************************************************//** + * @brief * The setBloodPumpTargetFlowRate function sets a new target flow rate and * pump direction. * @details @@ -238,13 +251,12 @@ return result; } -/************************************************************************* +/*********************************************************************//** * @brief signalBloodPumpHardStop * The signalBloodPumpHardStop function stops the blood pump immediately. * @details * Inputs : none * Outputs : Blood pump stopped, set point reset, state changed to off - * @param none * @return none *************************************************************************/ void signalBloodPumpHardStop( void ) @@ -257,13 +269,61 @@ resetPIController( PI_CONTROLLER_ID_BLOOD_FLOW, MIN_BLOOD_PUMP_PWM_DUTY_CYCLE ); } -/************************************************************************* - * @brief execBloodFlowMonitor +/*********************************************************************//** + * @brief + * The signalBloodPumpRotorHallSensor function handles the blood pump rotor \n + * hall sensor detection. Calculates rotor speed (in RPM). Stops pump if \n + * there is a pending request to home the pump. + * @details + * Inputs : bpRotorRevStartTime, bpStopAtHomePosition + * Outputs : bpRotorRevStartTime, bloodPumpRotorSpeedRPM + * @return none + *************************************************************************/ +void signalBloodPumpRotorHallSensor( void ) +{ + U32 rotTime = getMSTimerCount(); + U32 deltaTime = calcTimeBetween( bpRotorRevStartTime, rotTime ); + + // calculate rotor speed (in RPM) + bloodPumpRotorSpeedRPM.data = ( 1.0 / (F32)deltaTime ) * (F32)MS_PER_SECOND * (F32)SEC_PER_MIN; + bpRotorRevStartTime = rotTime; + + // if we're supposed to stop pump at home position, stop pump now. + if ( TRUE == bpStopAtHomePosition ) + { + signalBloodPumpHardStop(); + bpStopAtHomePosition = FALSE; + } +} + +/*********************************************************************//** + * @brief + * The homeBloodPump function initiates a blood pump home operation. + * @details + * Inputs : bloodPumpState + * Outputs : bpStopAtHomePosition, bpHomeStartTime, blood pump started (slow) + * @return none + *************************************************************************/ +BOOL homeBloodPump( void ) +{ + BOOL result = FALSE; + + if ( BLOOD_PUMP_OFF_STATE == bloodPumpState ) + { + bpStopAtHomePosition = TRUE; + bpHomeStartTime = getMSTimerCount(); + result = setBloodPumpTargetFlowRate( BP_HOME_RATE, MOTOR_DIR_FORWARD, PUMP_CONTROL_MODE_OPEN_LOOP ); + } + + return result; +} + +/*********************************************************************//** + * @brief * The execBloodFlowMonitor function executes the blood flow monitor. * @details * Inputs : none * Outputs : measuredBloodFlowRate, adcBloodPumpMCSpeedRPM, adcBloodPumpMCCurrentmA - * @param none * @return none *************************************************************************/ void execBloodFlowMonitor( void ) @@ -277,24 +337,31 @@ filterBloodFlowReadings( bpFlow ); - // don't start enforcing checks until out of init/POST mode + // don't start enforcing checks until out of init/POST mode if ( getCurrentOperationMode() != MODE_INIT ) { checkBloodPumpDirection(); checkBloodPumpMCCurrent(); } + // if homing, check timeout + if ( ( TRUE == bpStopAtHomePosition ) && ( TRUE == didTimeout( bpHomeStartTime, BP_HOME_TIMEOUT_MS ) ) ) + { + signalBloodPumpHardStop(); + bpStopAtHomePosition = FALSE; + // TODO - alarm??? + } + // publish blood flow data on interval publishBloodFlowData(); } -/************************************************************************* - * @brief execBloodFlowController +/*********************************************************************//** + * @brief * The execBloodFlowController function executes the blood flow controller. * @details * Inputs : bloodPumpState * Outputs : bloodPumpState - * @param none * @return none *************************************************************************/ void execBloodFlowController( void ) @@ -323,14 +390,13 @@ } } -/************************************************************************* - * @brief handleBloodPumpOffState +/*********************************************************************//** + * @brief * The handleBloodPumpOffState function handles the blood pump off state \n * of the blood pump controller state machine. * @details * Inputs : targetBloodFlowRate, bloodPumpDirection * Outputs : bloodPumpPWMDutyCyclePctSet, bloodPumpDirectionSet, isBloodPumpOn - * @param none * @return next state *************************************************************************/ static BLOOD_PUMP_STATE_T handleBloodPumpOffState( void ) @@ -353,14 +419,13 @@ return result; } -/************************************************************************* - * @brief handleBloodPumpRampingUpState +/*********************************************************************//** + * @brief * The handleBloodPumpRampingUpState function handles the ramp up state \n * of the blood pump controller state machine. * @details * Inputs : bloodPumpPWMDutyCyclePctSet * Outputs : bloodPumpPWMDutyCyclePctSet - * @param none * @return next state *************************************************************************/ static BLOOD_PUMP_STATE_T handleBloodPumpRampingUpState( void ) @@ -399,14 +464,13 @@ return result; } -/************************************************************************* - * @brief handleBloodPumpRampingDownState +/*********************************************************************//** + * @brief * The handleBloodPumpRampingDownState function handles the ramp down state \n * of the blood pump controller state machine. * @details * Inputs : bloodPumpPWMDutyCyclePctSet * Outputs : bloodPumpPWMDutyCyclePctSet - * @param none * @return next state *************************************************************************/ static BLOOD_PUMP_STATE_T handleBloodPumpRampingDownState( void ) @@ -443,14 +507,13 @@ return result; } -/************************************************************************* - * @brief handleBloodPumpControlToTargetState +/*********************************************************************//** + * @brief * The handleBloodPumpControlToTargetState function handles the "control to \n * target" state of the blood pump controller state machine. * @details * Inputs : none * Outputs : bloodPumpState - * @param none * @return next state *************************************************************************/ static BLOOD_PUMP_STATE_T handleBloodPumpControlToTargetState( void ) @@ -476,8 +539,8 @@ return result; } -/************************************************************************* - * @brief setBloodPumpControlSignalPWM +/*********************************************************************//** + * @brief * The setBloodPumpControlSignalPWM function sets the PWM duty cycle for \n * the blood pump to a given %. * @details @@ -491,13 +554,12 @@ etpwmSetCmpA( etpwmREG1, (U32)( (S32)( ( newPWM * (F32)(etpwmREG1->TBPRD) ) + FLOAT_TO_INT_ROUNDUP_OFFSET ) ) ); } -/************************************************************************* - * @brief stopBloodPump +/*********************************************************************//** + * @brief * The stopBloodPump function sets the blood pump stop signal. * @details * Inputs : none * Outputs : blood pump stop signal activated, PWM duty cycle zeroed - * @param none * @return none *************************************************************************/ static void stopBloodPump( void ) @@ -508,22 +570,21 @@ SET_BP_STOP(); } -/************************************************************************* - * @brief releaseBloodPumpStop +/*********************************************************************//** + * @brief * The releaseBloodPumpStop function clears the blood pump stop signal. * @details * Inputs : none * Outputs : blood pump stop signal - * @param none * @return none *************************************************************************/ static void releaseBloodPumpStop( void ) { CLR_BP_STOP(); } -/************************************************************************* - * @brief setBloodPumpDirection +/*********************************************************************//** + * @brief * The setBloodPumpDirection function sets the set blood pump direction to \n * the given direction. * @details @@ -552,99 +613,161 @@ } } -/************************************************************************* - * @brief getPublishBloodFlowDataInterval +/*********************************************************************//** + * @brief * The getPublishBloodFlowDataInterval function gets the blood flow data \n * publication interval. * @details * Inputs : bloodFlowDataPublishInterval * Outputs : none - * @param none * @return the current blood flow data publication interval (in ms). *************************************************************************/ -DATA_GET( U32, getPublishBloodFlowDataInterval, bloodFlowDataPublishInterval ) +U32 getPublishBloodFlowDataInterval( void ) +{ + U32 result = bloodFlowDataPublishInterval.data; -/************************************************************************* - * @brief getTargetBloodFlowRate + if ( OVERRIDE_KEY == bloodFlowDataPublishInterval.override ) + { + result = bloodFlowDataPublishInterval.ovData; + } + + return result; +} + +/*********************************************************************//** + * @brief * The getTargetBloodFlowRate function gets the current target blood flow \n * rate. * @details * Inputs : targetBloodFlowRate * Outputs : none - * @param none - * @return the current target blood flow rate (in mL/min). +/ * @return the current target blood flow rate (in mL/min). *************************************************************************/ -DATA_GET( S32, getTargetBloodFlowRate, targetBloodFlowRate ) +S32 getTargetBloodFlowRate( void ) +{ + S32 result = targetBloodFlowRate.data; -/************************************************************************* - * @brief getMeasuredBloodFlowRate + if ( OVERRIDE_KEY == targetBloodFlowRate.override ) + { + result = targetBloodFlowRate.ovData; + } + + return result; +} + +/*********************************************************************//** + * @brief * The getMeasuredBloodFlowRate function gets the measured blood flow \n * rate. * @details * Inputs : measuredBloodFlowRate * Outputs : none - * @param none * @return the current blood flow rate (in mL/min). *************************************************************************/ -DATA_GET( F32, getMeasuredBloodFlowRate, measuredBloodFlowRate ) +F32 getMeasuredBloodFlowRate( void ) +{ + F32 result = measuredBloodFlowRate.data; -/************************************************************************* - * @brief getMeasuredBloodPumpRotorSpeed + if ( OVERRIDE_KEY == measuredBloodFlowRate.override ) + { + result = measuredBloodFlowRate.ovData; + } + + return result; +} + +/*********************************************************************//** + * @brief * The getMeasuredBloodPumpRotorSpeed function gets the measured blood flow \n * rate. * @details * Inputs : bloodPumpRotorSpeedRPM * Outputs : none - * @param none * @return the current blood flow rate (in mL/min). *************************************************************************/ -DATA_GET( F32, getMeasuredBloodPumpRotorSpeed, bloodPumpRotorSpeedRPM ) +F32 getMeasuredBloodPumpRotorSpeed( void ) +{ + F32 result = bloodPumpRotorSpeedRPM.data; -/************************************************************************* - * @brief getMeasuredBloodPumpSpeed + if ( OVERRIDE_KEY == bloodPumpRotorSpeedRPM.override ) + { + result = bloodPumpRotorSpeedRPM.ovData; + } + + return result; +} + +/*********************************************************************//** + * @brief * The getMeasuredBloodPumpSpeed function gets the measured blood flow \n * rate. * @details * Inputs : bloodPumpSpeedRPM * Outputs : none - * @param none * @return the current blood flow rate (in mL/min). *************************************************************************/ -DATA_GET( F32, getMeasuredBloodPumpSpeed, bloodPumpSpeedRPM ) +F32 getMeasuredBloodPumpSpeed( void ) +{ + F32 result = bloodPumpSpeedRPM.data; -/************************************************************************* - * @brief getMeasuredBloodPumpMCSpeed + if ( OVERRIDE_KEY == bloodPumpSpeedRPM.override ) + { + result = bloodPumpSpeedRPM.ovData; + } + + return result; +} + +/*********************************************************************//** + * @brief * The getMeasuredBloodPumpMCSpeed function gets the measured blood pump \n * speed. * @details * Inputs : adcBloodPumpMCSpeedRPM * Outputs : none - * @param none * @return the current blood pump speed (in RPM). *************************************************************************/ -DATA_GET( F32, getMeasuredBloodPumpMCSpeed, adcBloodPumpMCSpeedRPM ) +F32 getMeasuredBloodPumpMCSpeed( void ) +{ + F32 result = adcBloodPumpMCSpeedRPM.data; -/************************************************************************* - * @brief getMeasuredBloodPumpMCCurrent + if ( OVERRIDE_KEY == adcBloodPumpMCSpeedRPM.override ) + { + result = adcBloodPumpMCSpeedRPM.ovData; + } + + return result; +} + +/*********************************************************************//** + * @brief * The getMeasuredBloodPumpMCCurrent function gets the measured blood pump \n * current. * @details * Inputs : adcBloodPumpMCCurrentmA * Outputs : none - * @param none * @return the current blood pump current (in mA). *************************************************************************/ -DATA_GET( F32, getMeasuredBloodPumpMCCurrent, adcBloodPumpMCCurrentmA ) +F32 getMeasuredBloodPumpMCCurrent( void ) +{ + F32 result = adcBloodPumpMCCurrentmA.data; -/************************************************************************* - * @brief publishBloodFlowData + if ( OVERRIDE_KEY == adcBloodPumpMCCurrentmA.override ) + { + result = adcBloodPumpMCCurrentmA.ovData; + } + + return result; +} + +/*********************************************************************//** + * @brief * The publishBloodFlowData function publishes blood flow data at the set \n * interval. * @details * Inputs : target flow rate, measured flow rate, measured MC speed, \n * measured MC current * Outputs : Blood flow data is published to CAN bus. - * @param none * @return none *************************************************************************/ static void publishBloodFlowData( void ) @@ -663,20 +786,20 @@ F32 measMCSpd = getMeasuredBloodPumpMCSpeed(); F32 measMCCurr = getMeasuredBloodPumpMCCurrent(); F32 pumpPWMPctDutyCycle = bloodPumpPWMDutyCyclePctSet * FRACTION_TO_PERCENT_FACTOR; -//#ifdef DEBUG_ENABLED -// // TODO - temporary debug code - remove later -// char debugFlowStr[ 256 ]; -// -// sprintf( debugFlowStr, "Blood Set Pt.:%5d, Meas. Flow:%5d, Speed:%5d RPM, Current:%5d mA, PWM:%5d \n", flowStPt, (S32)measFlow, (S32)measMCSpd, (S32)measMCCurr, (S32)pumpPWMPctDutyCycle ); -// sendDebugData( (U08*)debugFlowStr, strlen(debugFlowStr) ); -//#endif +#ifdef DEBUG_ENABLED + // TODO - temporary debug code - remove later + char debugFlowStr[ 256 ]; + + sprintf( debugFlowStr, "Tgt:%5d, Flow:%5d, Speed:%5d RPM, Rotor:%5d RPM, Curr:%5d mA, PWM:%5d \n", flowStPt, (S32)measFlow, (S32)measMCSpd, (S32)measRotSpd, (S32)measMCCurr, (S32)pumpPWMPctDutyCycle ); + sendDebugData( (U08*)debugFlowStr, strlen(debugFlowStr) ); +#endif broadcastBloodFlowData( flowStPt, measFlow, measRotSpd, measSpd, measMCSpd, measMCCurr, pumpPWMPctDutyCycle ); bloodFlowDataPublicationTimerCounter = 0; } } -/************************************************************************* - * @brief resetBloodFlowMovingAverage +/*********************************************************************//** + * @brief * The resetBloodFlowMovingAverage function re-sizes and re-initializes the \n * blood flow moving average sample buffer. * @details @@ -695,8 +818,8 @@ bpControlTimerCounter = 0; } -/************************************************************************* - * @brief filterBloodFlowReadings +/*********************************************************************//** + * @brief * The filterBloodFlowReadings function adds a new flow sample to the filter \n * if decimation rate for current set point calls for it. * @details @@ -766,32 +889,15 @@ } flowReadingsTmrCtr = INC_WRAP( flowReadingsTmrCtr, 0, MAX_FLOW_FILTER_INTERVAL - 1 ); -#ifdef DEBUG_ENABLED - { - // TODO - temporary debug code - remove later -// char debugFlowStr[ 40 ]; - //S32 num = (S32)(flow); - //S32 dec = (S32)(fabs(flow-(S32)(flow))*100.0); -// S32 numf = (S32)(measuredBloodFlowRate.data); -// S32 decf = (S32)(fabs(measuredBloodFlowRate.data-(S32)(measuredBloodFlowRate.data))*100.0); -// S32 nump = (S32)bloodPumpPWMDutyCyclePctSet; -// S32 decp = (S32)((bloodPumpPWMDutyCyclePctSet-(S32)bloodPumpPWMDutyCyclePctSet)*100.0); - -// sprintf( debugFlowStr, "%5d.%02d %5d.%02d\n", numf, decf, numf, decf ); -// sprintf( debugFlowStr, "%5d.%02d %5d.%02d\n", num, dec, numf, decf ); -// sendDebugData( (U08*)debugFlowStr, strlen(debugFlowStr) ); - } -#endif } -/************************************************************************* - * @brief checkBloodPumpDirection +/*********************************************************************//** + * @brief * The checkBloodPumpDirection function checks the set direction vs. \n * the direction implied by the sign of the measured MC speed. * @details * Inputs : * Outputs : - * @param none * @return none *************************************************************************/ static void checkBloodPumpDirection( void ) @@ -809,14 +915,13 @@ } } -/************************************************************************* - * @brief checkBloodPumpMCCurrent +/*********************************************************************//** + * @brief * The checkBloodPumpMCCurrent function checks the measured MC current vs. \n * the set state of the blood pump (stopped or running). * @details * Inputs : * Outputs : - * @param none * @return none *************************************************************************/ static void checkBloodPumpMCCurrent( void ) @@ -863,14 +968,13 @@ } } -/************************************************************************* - * @brief execBloodFlowTest +/*********************************************************************//** + * @brief * The execBloodFlowTest function executes the state machine for the \n * BloodFlow self test. * @details * Inputs : none * Outputs : none - * @param none * @return the current state of the BloodFlow self test. *************************************************************************/ SELF_TEST_STATUS_T execBloodFlowTest( void ) @@ -888,8 +992,8 @@ *************************************************************************/ -/************************************************************************* - * @brief testSetBloodFlowDataPublishIntervalOverride +/*********************************************************************//** + * @brief * The testSetBloodFlowDataPublishIntervalOverride function overrides the \n * blood flow data publish interval. * @details @@ -914,8 +1018,8 @@ return result; } -/************************************************************************* - * @brief testResetBloodFlowDataPublishIntervalOverride +/*********************************************************************//** + * @brief * The testResetBloodFlowDataPublishIntervalOverride function resets the override \n * of the blood flow data publish interval. * @details @@ -937,7 +1041,7 @@ return result; } -/************************************************************************* +/*********************************************************************//** * @brief * The testSetTargetBloodFlowRateOverride function overrides the target \n * blood flow rate. @@ -972,14 +1076,13 @@ return result; } -/************************************************************************* +/*********************************************************************//** * @brief * The testResetTargetBloodFlowRateOverride function resets the override of the \n * target blood flow rate. * @details * Inputs : none * Outputs : targetBloodFlowRate - * @param none * @return TRUE if override reset successful, FALSE if not *************************************************************************/ BOOL testResetTargetBloodFlowRateOverride( void ) @@ -998,7 +1101,7 @@ return result; } -/************************************************************************* +/*********************************************************************//** * @brief * The testResetMeasuredBloodFlowRateOverride function overrides the measured \n * blood flow rate. @@ -1022,7 +1125,7 @@ return result; } -/************************************************************************* +/*********************************************************************//** * @brief * The testResetOffButtonStateOverride function resets the override of the \n * measured blood flow rate. @@ -1045,7 +1148,7 @@ return result; } -/************************************************************************* +/*********************************************************************//** * @brief * The testSetMeasuredBloodPumpRotorSpeedOverride function overrides the measured \n * blood pump rotor speed. @@ -1069,7 +1172,7 @@ return result; } -/************************************************************************* +/*********************************************************************//** * @brief * The testResetMeasuredBloodPumpRotorSpeedOverride function resets the override of the \n * measured blood pump rotor speed. @@ -1092,7 +1195,7 @@ return result; } -/************************************************************************* +/*********************************************************************//** * @brief * The testSetMeasuredBloodPumpSpeedOverride function overrides the measured \n * blood pump motor speed. @@ -1116,7 +1219,7 @@ return result; } -/************************************************************************* +/*********************************************************************//** * @brief * The testResetMeasuredBloodPumpSpeedOverride function resets the override of the \n * measured blood pump motor speed. @@ -1139,7 +1242,7 @@ return result; } -/************************************************************************* +/*********************************************************************//** * @brief * The testSetMeasuredBloodPumpMCSpeedOverride function overrides the measured \n * blood pump motor speed. @@ -1163,7 +1266,7 @@ return result; } -/************************************************************************* +/*********************************************************************//** * @brief * The testResetMeasuredBloodPumpMCSpeedOverride function resets the override of the \n * measured blood pump motor speed. @@ -1186,7 +1289,7 @@ return result; } -/************************************************************************* +/*********************************************************************//** * @brief * The testSetMeasuredBloodPumpMCCurrentOverride function overrides the measured \n * blood pump motor current. @@ -1210,7 +1313,7 @@ return result; } -/************************************************************************* +/*********************************************************************//** * @brief * The testResetMeasuredBloodPumpMCCurrentOverride function resets the override of the \n * measured blood pump motor current. @@ -1233,4 +1336,4 @@ return result; } - +/**@}*/ Index: firmware/App/Controllers/BloodFlow.h =================================================================== diff -u -r054fa08b67ed2a31f7848b179fbcd1b4da501b0f -r9d4666bf3064df18a6d935125d7a69e4e8234e84 --- firmware/App/Controllers/BloodFlow.h (.../BloodFlow.h) (revision 054fa08b67ed2a31f7848b179fbcd1b4da501b0f) +++ firmware/App/Controllers/BloodFlow.h (.../BloodFlow.h) (revision 9d4666bf3064df18a6d935125d7a69e4e8234e84) @@ -1,4 +1,4 @@ -/************************************************************************** +/**********************************************************************//** * * Copyright (c) 2019-2020 Diality Inc. - All Rights Reserved. * @@ -19,10 +19,19 @@ #include "HDCommon.h" +/** + * @defgroup BloodFlow BloodFlow + * @brief Blood Pump & Blood Flow controller/monitor module. Monitors the + * blood flow rate and controls the blood pump. + * + * @addtogroup BloodFlow + * @{ + */ + // ********** public definitions ********** -#define MAX_BLOOD_FLOW_RATE 500 // mL/min -#define MIN_BLOOD_FLOW_RATE 100 // mL/min +#define MAX_BLOOD_FLOW_RATE 500 ///< Maximum blood flow rate (in mL/min). +#define MIN_BLOOD_FLOW_RATE 100 ///< Minimum blood flow rate (in mL/min). // ********** public function prototypes ********** @@ -32,6 +41,8 @@ BOOL setBloodPumpTargetFlowRate( U32 flowRate, MOTOR_DIR_T dir, PUMP_CONTROL_MODE_T mode ); void signalBloodPumpHardStop( void ); +void signalBloodPumpRotorHallSensor( void ); +BOOL homeBloodPump( void ); SELF_TEST_STATUS_T execBloodFlowTest( void ); @@ -57,4 +68,6 @@ BOOL testSetMeasuredBloodPumpMCCurrentOverride( F32 value ); BOOL testResetMeasuredBloodPumpMCCurrentOverride( void ); +/**@}*/ + #endif Index: firmware/App/Controllers/PresOccl.c =================================================================== diff -u -r6463655c18b173e335b6d475ac7289336f1bf092 -r9d4666bf3064df18a6d935125d7a69e4e8234e84 --- firmware/App/Controllers/PresOccl.c (.../PresOccl.c) (revision 6463655c18b173e335b6d475ac7289336f1bf092) +++ firmware/App/Controllers/PresOccl.c (.../PresOccl.c) (revision 9d4666bf3064df18a6d935125d7a69e4e8234e84) @@ -380,9 +380,7 @@ return result; } -/**@}*/ - /************************************************************************* * TEST SUPPORT FUNCTIONS *************************************************************************/ @@ -672,4 +670,4 @@ return result; } - +/**@}*/ Index: firmware/App/HDCommon.h =================================================================== diff -u -r51147222d369a3023a11b2ee675178d058ffaf46 -r9d4666bf3064df18a6d935125d7a69e4e8234e84 --- firmware/App/HDCommon.h (.../HDCommon.h) (revision 51147222d369a3023a11b2ee675178d058ffaf46) +++ firmware/App/HDCommon.h (.../HDCommon.h) (revision 9d4666bf3064df18a6d935125d7a69e4e8234e84) @@ -22,7 +22,7 @@ // ********** version ********** #define HD_VERSION_MAJOR 0 -#define HD_VERSION_MINOR 3 +#define HD_VERSION_MINOR 4 #define HD_VERSION_BUILD 0 // ********** build switches ********** @@ -32,11 +32,11 @@ #ifndef _VECTORCAST_ // #define RM46_EVAL_BOARD_TARGET 1 // #define BREADBOARD_TARGET 1 -// #define SIMULATE_UI 1 + #define SIMULATE_UI 1 #define SKIP_POST 1 #define DISABLE_CRC_ERROR 1 #define DISABLE_MOTOR_CURRENT_ERRORS 1 - #define SHOW_LOAD_CELL_IN_ROTOR_RPM 1 +// #define SHOW_LOAD_CELL_IN_ROTOR_RPM 1 // #define SHOW_RAW_FLOW_VALUES 1 #include Index: firmware/App/Services/FPGA.c =================================================================== diff -u -r51147222d369a3023a11b2ee675178d058ffaf46 -r9d4666bf3064df18a6d935125d7a69e4e8234e84 --- firmware/App/Services/FPGA.c (.../FPGA.c) (revision 51147222d369a3023a11b2ee675178d058ffaf46) +++ firmware/App/Services/FPGA.c (.../FPGA.c) (revision 9d4666bf3064df18a6d935125d7a69e4e8234e84) @@ -80,32 +80,53 @@ typedef struct // TODO - add all sensor readings to this structure per FPGA register map { + U08 errorCountProcessor; // 256 + U08 errorCountPC; U08 bloodFlowMeterDataPktCount; U08 bloodFlowMeterSlowPktCounts; - U08 bloodFlowMeterDeviceStatus; + F32 bloodFlowLast; // 260 + U08 bloodFlowMeterDeviceStatus; // 264 U08 bloodFlowMeterResponse; - F32 bloodFlowLast; U08 dialysateFlowMeterDataPktCount; U08 dialysateFlowMeterSlowPckCounts; - U08 dialysateFlowMeterDeviceStatus; + F32 dialysateFlowLast; // 268 + U08 dialysateFlowMeterDeviceStatus; // 272 U08 dialysateFlowMeterResponse; - F32 dialysateFlowLast; U08 bloodFlowMeterErrorCount; U08 dialysateFlowMeterErrorCount; - U16 bloodOcclusionData; + U16 bloodOcclusionData; // 276 U08 bloodOcclusionReadCount; U08 bloodOcclusionErrorCount; - U16 dialysateInOcclusionData; + U16 dialysateInOcclusionData; // 280 U08 dialysateInOcclusionReadCount; U08 dialysateInOcclusionErrorCount; - U16 dialysateOutOcclusionData; + U16 dialysateOutOcclusionData; // 284 U08 dialysateOutOcclusionReadCount; U08 dialysateOutOcclusionErrorCount; - U16 arterialPressureData; - U08 arterialPressureReadCount; - U08 arterialPressureErrorCount; - U16 dialysateTempPrimaryData; - U16 dialysateTempBackupData; + U16 bloodPumpHallSensorCount; // 288 + U08 bloodPumpHallSensorStatus; + U08 dialInPumpHallSensorStatus; + U32 adc1Channel0; // 292 + U32 adc1Channel1; // 296 + U32 adc1Channel2; // 300 + U32 adc1Channel3; // 304 + U32 adc1channel4; // 308 + U08 adc1SequenceCount; // 312 + U08 adc1ErrorCount; + U16 accelX; + U16 accelY; // 316 + U16 accelZ; + U16 accelXMax; // 320 + U16 accelYMax; + U16 accelZMax; // 324 + U16 accelFaultRegister; + U16 accelSampleCounter; // 328 + U16 venousPressure; + U16 venousTemperature; // 332 + U08 venousReadCounter; + U08 dialOutPumpSensorStatus; + U16 dialInPumpHallSensorCount; // 336 + U16 dialOutPumpHallSensorCount; } FPGA_SENSORS_T; typedef struct // TODO - add all actuator set points to this structure per FPGA register map @@ -554,7 +575,7 @@ fpgaWriteCmdBuffer[ FPGA_WRITE_CMD_HDR_LEN + sizeof( FPGA_ACTUATORS_T ) + 1 ] = GET_LSB_OF_WORD( crc ); // construct bulk read command to read sensor data registers starting at address 8 fpgaReadCmdBuffer[ 0 ] = FPGA_READ_CMD_CODE; - fpgaReadCmdBuffer[ 1 ] = 0x08; // start at FPGA address 0x108 (264) + fpgaReadCmdBuffer[ 1 ] = 0x00; // start at FPGA address 0x100 (256) fpgaReadCmdBuffer[ 2 ] = 0x01; fpgaReadCmdBuffer[ 3 ] = sizeof(FPGA_SENSORS_T); crc = crc16( fpgaReadCmdBuffer, FPGA_READ_CMD_HDR_LEN ); @@ -938,7 +959,7 @@ *************************************************************************/ U16 getFPGAArterialPressure( void ) { - return fpgaSensorReadings.arterialPressureData; + return 0; // TODO - return reading when available } /************************************************************************* Index: firmware/App/Services/Interrupts.c =================================================================== diff -u -rb948375777d4eb9c766befdcfde1e717a37977a8 -r9d4666bf3064df18a6d935125d7a69e4e8234e84 --- firmware/App/Services/Interrupts.c (.../Interrupts.c) (revision b948375777d4eb9c766befdcfde1e717a37977a8) +++ firmware/App/Services/Interrupts.c (.../Interrupts.c) (revision 9d4666bf3064df18a6d935125d7a69e4e8234e84) @@ -17,12 +17,16 @@ #include #include "can.h" +#include "het.h" #include "rti.h" #include "sci.h" #include "sys_dma.h" #include "AlarmMgmt.h" +#include "BloodFlow.h" #include "Comm.h" +#include "DialInFlow.h" +#include "DialOutFlow.h" #include "Interrupts.h" #include "FPGA.h" #include "SystemComm.h" @@ -35,6 +39,9 @@ // ********** private definitions ********** +#define HET1_EDGE_BP_ROTOR_HALL_SENSOR 0 +#define HET1_EDGE_DPI_ROTOR_HALL_SENSOR 1 +#define HET1_EDGE_DPO_ROTOR_HALL_SENSOR 2 // ********** private data ********** @@ -301,3 +308,37 @@ } } +/************************************************************************* + * @brief + * The edgeNotification function handles rotor hall sensor interrupts. + * @details + * Inputs : none + * Outputs : Rotor hall sensor interrupt is handled according to pin associated with given edge. + * @param hetREG : HET controller associated with the edge. + * @param edge : Which edge was detected. + * @return none + *************************************************************************/ +void edgeNotification(hetBASE_t * hetREG, uint32 edge) +{ + if ( hetREG == hetREG1 ) + { + switch ( edge ) + { + case HET1_EDGE_BP_ROTOR_HALL_SENSOR: + signalBloodPumpRotorHallSensor(); + break; + + case HET1_EDGE_DPI_ROTOR_HALL_SENSOR: + //signalDialInPumpRotorHallSensor(); + break; + + case HET1_EDGE_DPO_ROTOR_HALL_SENSOR: + //signalDialOutPumpRotorHallSensor(); + break; + + default: + // TODO - ignore? + break; + } + } +} Index: firmware/App/Services/PIControllers.c =================================================================== diff -u -r926afe9b1d9cc6931cbca48080e4a66385a20239 -r9d4666bf3064df18a6d935125d7a69e4e8234e84 --- firmware/App/Services/PIControllers.c (.../PIControllers.c) (revision 926afe9b1d9cc6931cbca48080e4a66385a20239) +++ firmware/App/Services/PIControllers.c (.../PIControllers.c) (revision 9d4666bf3064df18a6d935125d7a69e4e8234e84) @@ -172,23 +172,6 @@ controller->errorSum -= ( windupError / controller->Ki ); } result = controller->controlSignal; -//#ifdef DEBUG_ENABLED -// { -// // TODO - temporary debug code - remove later -// char debugFlowStr[ 100 ]; -// S32 nums = (S32)(measuredSignal); -// S32 decs = (S32)(fabs(measuredSignal-(S32)(measuredSignal))*100.0); -// S32 nume = (S32)controller->errorSignal; -// S32 dece = (S32)(fabs(controller->errorSignal-(S32)controller->errorSignal)*100.0); -// S32 numes = (S32)controller->errorSum; -// S32 deces = (S32)((controller->errorSum-(S32)(controller->errorSum))*100.0); -// S32 nump = (S32)controller->controlSignal; -// S32 decp = (S32)((controller->controlSignal-(S32)controller->controlSignal)*10000.0); -// -// sprintf( debugFlowStr, "%6d.%02d %6d.%02d %10d.%02d %3d.%04d\n", nums, decs, nume, dece, numes, deces, nump, decp ); -// sendDebugData( (U08*)debugFlowStr, strlen(debugFlowStr) ); -// } -//#endif } else { Index: firmware/App/Services/SystemComm.c =================================================================== diff -u -r968f9908941a8f8ceeacdb6aa40655abf54c1ef4 -r9d4666bf3064df18a6d935125d7a69e4e8234e84 --- firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision 968f9908941a8f8ceeacdb6aa40655abf54c1ef4) +++ firmware/App/Services/SystemComm.c (.../SystemComm.c) (revision 9d4666bf3064df18a6d935125d7a69e4e8234e84) @@ -727,15 +727,6 @@ { badCRCDetected = TRUE; getFromCommBuffer( MSG_IN_BUFFERS[ i ], data, 1 ); // consume sync byte so we can re-sync -//#ifdef DEBUG_ENABLED -//{ -// // TODO - temporary debug code - remove later -// char debugStr[ 20 ]; -// -// sprintf( debugStr, "%02X", (S32)data[0] ); -// sendDebugData( (U08*)debugStr, strlen(debugStr) ); -//} -//#endif messagesInBuffer = TRUE; // keep processing this buffer } // looks like there is a complete message in the comm buffer } // enough data left in comm buffer to possibly be a complete message @@ -770,27 +761,11 @@ peekFromCommBuffer( buffer, &data, 1 ); if ( MESSAGE_SYNC_BYTE == data ) { -//#ifdef DEBUG_ENABLED -//{ -// // TODO - temporary debug code - remove later -// char debugStr[ 3 ] = "\n"; -// sendDebugData( (U08*)debugStr, strlen(debugStr) ); -//} -//#endif break; // we found a sync - we're done } else // not a sync byte, so consume it { getFromCommBuffer( buffer, &data, 1 ); -//#ifdef DEBUG_ENABLED -//{ -// // TODO - temporary debug code - remove later -// char debugStr[ 20 ]; -// -// sprintf( debugStr, "%02X ", (U32)data ); -// sendDebugData( (U08*)debugStr, strlen(debugStr) ); -//} -//#endif numOfBytesInBuffer = numberOfBytesInCommBuffer( buffer ); } } Index: firmware/HD.dil =================================================================== diff -u -r0a0b6c446cd0f428af75b28e6ca8206bbcf148ac -r9d4666bf3064df18a6d935125d7a69e4e8234e84 --- firmware/HD.dil (.../HD.dil) (revision 0a0b6c446cd0f428af75b28e6ca8206bbcf148ac) +++ firmware/HD.dil (.../HD.dil) (revision 9d4666bf3064df18a6d935125d7a69e4e8234e84) @@ -1,4 +1,4 @@ -# RM46L852PGE 04/29/20 14:27:22 +# RM46L852PGE 05/05/20 13:26:59 # ARCH=RM46L852PGE # @@ -5947,7 +5947,7 @@ DRIVER.HET.VAR.HET2_EDGE6_BOTH.VALUE=0 DRIVER.HET.VAR.HET2_PWM2_DUTY_LVL.VALUE=0x00000000 DRIVER.HET.VAR.HET2_BIT15_DIR.VALUE=0x00000000 -DRIVER.HET.VAR.HET1_EDGE2_EVENT.VALUE=2 +DRIVER.HET.VAR.HET1_EDGE2_EVENT.VALUE=1 DRIVER.HET.VAR.HET2_BIT11_PULDIS.VALUE=0x00000000 DRIVER.HET.VAR.HET2_PIN_ENABLE.VALUE=0 DRIVER.HET.VAR.HET1_CAP3_POLARITY.VALUE=0 @@ -6224,7 +6224,7 @@ DRIVER.HET.VAR.HET1_INT_X28.VALUE=0x00000000 DRIVER.HET.VAR.HET2_PWM2_PERIOD_INTENA.VALUE=0x00000000 DRIVER.HET.VAR.HET2_RAM_SIZE.VALUE=160 -DRIVER.HET.VAR.HET1_EDGE2_POLARITY.VALUE=1 +DRIVER.HET.VAR.HET1_EDGE2_POLARITY.VALUE=0 DRIVER.HET.VAR.HET1_INT_X29.VALUE=0x00000000 DRIVER.HET.VAR.HET2_BIT17_PSL.VALUE=0x00000000 DRIVER.HET.VAR.HET2_BIT14_DOUT.VALUE=0 @@ -6423,7 +6423,7 @@ DRIVER.HET.VAR.HET1_INT_X9.VALUE=0x00000000 DRIVER.HET.VAR.HET2_BASE.VALUE=0xFFF7B900 DRIVER.HET.VAR.HET2_EDGE2_BOTH.VALUE=0 -DRIVER.HET.VAR.HET1_EDGE0_EVENT.VALUE=2 +DRIVER.HET.VAR.HET1_EDGE0_EVENT.VALUE=1 DRIVER.HET.VAR.HET2_BIT10_PULDIS.VALUE=0x00000000 DRIVER.HET.VAR.HET1_CAP2_PIN_SELECT.VALUE=4 DRIVER.HET.VAR.HET1_BIT11_PSL.VALUE=0x00000000 @@ -6449,7 +6449,7 @@ DRIVER.HET.VAR.HET2_BIT6_PULL.VALUE=1 DRIVER.HET.VAR.HET1_EDGE6_LVL.VALUE=0x00000000 DRIVER.HET.VAR.HET2_BIT7_PULDIS.VALUE=0x00000000 -DRIVER.HET.VAR.HET1_EDGE1_POLARITY.VALUE=1 +DRIVER.HET.VAR.HET1_EDGE1_POLARITY.VALUE=0 DRIVER.HET.VAR.HET1_RAM_SIZE.VALUE=160 DRIVER.HET.VAR.HET2_BIT9_DOUT.VALUE=0 DRIVER.HET.VAR.HET1_BIT21_PDR.VALUE=0x00000000 @@ -6584,7 +6584,7 @@ DRIVER.HET.VAR.HET2_EDGE4_BOTH.VALUE=0 DRIVER.HET.VAR.HET2_PWM1_PERIOD_LVL.VALUE=0x00000000 DRIVER.HET.VAR.HET2_BIT11_DIR.VALUE=0x00000000 -DRIVER.HET.VAR.HET1_EDGE1_EVENT.VALUE=2 +DRIVER.HET.VAR.HET1_EDGE1_EVENT.VALUE=1 DRIVER.HET.VAR.HET2_LR_PRESCALE.VALUE=7 DRIVER.HET.VAR.HET2_PWM2_PIN_SELECT.VALUE=12 DRIVER.HET.VAR.HET2_BIT1_PDR.VALUE=0x00000000 @@ -6672,7 +6672,7 @@ DRIVER.HET.VAR.HET2_EDGE5_BOTH.VALUE=0 DRIVER.HET.VAR.HET2_BIT13_DIR.VALUE=0x00000000 DRIVER.HET.VAR.HET2_BIT3_PULDIS.VALUE=0x00000000 -DRIVER.HET.VAR.HET1_EDGE0_POLARITY.VALUE=1 +DRIVER.HET.VAR.HET1_EDGE0_POLARITY.VALUE=0 DRIVER.HET.VAR.HET2_PWM7_ACTUALPERIOD.VALUE=1000.862 DRIVER.HET.VAR.HET2_BIT3_PDR.VALUE=0x00000000 DRIVER.HET.VAR.HET1_BIT25_PSL.VALUE=0x00000000 Index: firmware/source/het.c =================================================================== diff -u -r0a0b6c446cd0f428af75b28e6ca8206bbcf148ac -r9d4666bf3064df18a6d935125d7a69e4e8234e84 --- firmware/source/het.c (.../het.c) (revision 0a0b6c446cd0f428af75b28e6ca8206bbcf148ac) +++ firmware/source/het.c (.../het.c) (revision 9d4666bf3064df18a6d935125d7a69e4e8234e84) @@ -373,7 +373,7 @@ /* Program */ 0x00025440U, /* Control */ - (0x00024007U | (uint32)((uint32)12U << 8U) | (uint32)((uint32)2U << 4U)), + (0x00024007U | (uint32)((uint32)12U << 8U) | (uint32)((uint32)1U << 4U)), /* Data */ 0x00000000U, /* Reserved */ @@ -390,7 +390,7 @@ /* Program */ 0x00027440U, /* Control */ - (0x00026007U | (uint32)((uint32)14U << 8U) | (uint32)((uint32)2U << 4U)), + (0x00026007U | (uint32)((uint32)14U << 8U) | (uint32)((uint32)1U << 4U)), /* Data */ 0x00000000U, /* Reserved */ @@ -407,7 +407,7 @@ /* Program */ 0x00029440U, /* Control */ - (0x00028007U | (uint32)((uint32)30U << 8U) | (uint32)((uint32)2U << 4U)), + (0x00028007U | (uint32)((uint32)30U << 8U) | (uint32)((uint32)1U << 4U)), /* Data */ 0x00000000U, /* Reserved */ Index: firmware/source/sys_main.c =================================================================== diff -u -r7478d513d7493d08484a880f5cd6c296c9616e70 -r9d4666bf3064df18a6d935125d7a69e4e8234e84 --- firmware/source/sys_main.c (.../sys_main.c) (revision 7478d513d7493d08484a880f5cd6c296c9616e70) +++ firmware/source/sys_main.c (.../sys_main.c) (revision 9d4666bf3064df18a6d935125d7a69e4e8234e84) @@ -56,6 +56,7 @@ #include "can.h" #include "etpwm.h" #include "gio.h" +#include "het.h" #include "mibspi.h" #include "sci.h" #include "rti.h" @@ -132,6 +133,7 @@ static void initProcessor( void ) { gioInit(); // configure GPIO pins + hetInit(); // configure HET1 adcInit(); // configure internal ADC channels mibspiInit(); // re-purposing MIBSPI5 I/O/C pins as GPIO etpwmInit(); // configure PWMs Index: results/StatusReport.csv =================================================================== diff -u -r21c2cb5c9ca2e97127884c8f041fc7b04205de61 -r9d4666bf3064df18a6d935125d7a69e4e8234e84 --- results/StatusReport.csv (.../StatusReport.csv) (revision 21c2cb5c9ca2e97127884c8f041fc7b04205de61) +++ results/StatusReport.csv (.../StatusReport.csv) (revision 9d4666bf3064df18a6d935125d7a69e4e8234e84) @@ -1,7 +1,10 @@ Running Project, hdfirmware -Date, Fri May 1 11:32:54 PDT 2020 +Date, Fri May 1 13:02:06 PDT 2020 VectorCAST, Passed +VectorCAST, Passed +Coverage test is not considered for passing or failing the build + CppCheck, Passed Index: results/VectorCAST.log =================================================================== diff -u -r21c2cb5c9ca2e97127884c8f041fc7b04205de61 -r9d4666bf3064df18a6d935125d7a69e4e8234e84 --- results/VectorCAST.log (.../VectorCAST.log) (revision 21c2cb5c9ca2e97127884c8f041fc7b04205de61) +++ results/VectorCAST.log (.../VectorCAST.log) (revision 9d4666bf3064df18a6d935125d7a69e4e8234e84) @@ -1,6 +1,6 @@ COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009 -TIME: 2020-05-01 11:32:56 +TIME: 2020-05-01 13:02:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/CCAST_.CFG @@ -35,7 +35,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e ALARMLAMP -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009 -TIME: 2020-05-01 11:33:03 +TIME: 2020-05-01 13:02:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -166,7 +166,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e ALARMLAMP test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009 -TIME: 2020-05-01 11:33:08 +TIME: 2020-05-01 13:02:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -181,7 +181,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e ALARMLAMP tools import_coverage /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/ALARMLAMP/ALARMLAMP_cba.cvr DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009 -TIME: 2020-05-01 11:33:09 +TIME: 2020-05-01 13:02:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -203,7 +203,7 @@ >>> File processing completed for /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/ALARMLAMP/ALARMLAMP_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e ALARMLAMP -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009 -TIME: 2020-05-01 11:33:11 +TIME: 2020-05-01 13:02:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -398,7 +398,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791 -TIME: 2020-05-01 11:33:14 +TIME: 2020-05-01 13:02:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/CCAST_.CFG @@ -433,7 +433,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791 -TIME: 2020-05-01 11:33:20 +TIME: 2020-05-01 13:02:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -744,7 +744,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791 -TIME: 2020-05-01 11:33:25 +TIME: 2020-05-01 13:02:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -759,7 +759,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT tools import_coverage /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/ALARMMGMT/ALARMMGMT_cba.cvr DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791 -TIME: 2020-05-01 11:33:27 +TIME: 2020-05-01 13:02:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -781,7 +781,7 @@ >>> File processing completed for /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/ALARMMGMT/ALARMMGMT_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791 -TIME: 2020-05-01 11:33:28 +TIME: 2020-05-01 13:02:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1277,7 +1277,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643 -TIME: 2020-05-01 11:33:32 +TIME: 2020-05-01 13:02:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/CCAST_.CFG @@ -1313,7 +1313,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e BLOODFLOW -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643 -TIME: 2020-05-01 11:33:39 +TIME: 2020-05-01 13:02:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1798,7 +1798,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e BLOODFLOW test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643 -TIME: 2020-05-01 11:33:46 +TIME: 2020-05-01 13:02:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -1813,7 +1813,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e BLOODFLOW -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643 -TIME: 2020-05-01 11:33:48 +TIME: 2020-05-01 13:02:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2621,7 +2621,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415 -TIME: 2020-05-01 11:33:53 +TIME: 2020-05-01 13:03:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/CCAST_.CFG @@ -2656,7 +2656,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e BUTTONS -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415 -TIME: 2020-05-01 11:33:59 +TIME: 2020-05-01 13:03:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2895,7 +2895,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e BUTTONS test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415 -TIME: 2020-05-01 11:34:04 +TIME: 2020-05-01 13:03:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -2910,7 +2910,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e BUTTONS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415 -TIME: 2020-05-01 11:34:05 +TIME: 2020-05-01 13:03:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3293,7 +3293,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408 -TIME: 2020-05-01 11:34:09 +TIME: 2020-05-01 13:03:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/CCAST_.CFG @@ -3329,7 +3329,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e COMM -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408 -TIME: 2020-05-01 11:34:15 +TIME: 2020-05-01 13:03:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3438,7 +3438,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e COMM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408 -TIME: 2020-05-01 11:34:19 +TIME: 2020-05-01 13:03:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3565,7 +3565,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491 -TIME: 2020-05-01 11:34:21 +TIME: 2020-05-01 13:03:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/CCAST_.CFG @@ -3600,7 +3600,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491 -TIME: 2020-05-01 11:34:27 +TIME: 2020-05-01 13:03:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3750,7 +3750,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491 -TIME: 2020-05-01 11:34:31 +TIME: 2020-05-01 13:03:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -3916,7 +3916,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 -TIME: 2020-05-01 11:34:33 +TIME: 2020-05-01 13:03:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CCAST_.CFG @@ -3952,7 +3952,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e CPLD -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 -TIME: 2020-05-01 11:34:39 +TIME: 2020-05-01 13:03:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4030,7 +4030,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e CPLD test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 -TIME: 2020-05-01 11:34:44 +TIME: 2020-05-01 13:03:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4045,7 +4045,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e CPLD -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 -TIME: 2020-05-01 11:34:46 +TIME: 2020-05-01 13:03:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4150,7 +4150,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165/DIALINFLOW.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165 -TIME: 2020-05-01 11:34:49 +TIME: 2020-05-01 13:03:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165/CCAST_.CFG @@ -4186,7 +4186,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e DIALINFLOW -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165/DIALINFLOW.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165 -TIME: 2020-05-01 11:34:57 +TIME: 2020-05-01 13:04:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4674,7 +4674,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e DIALINFLOW test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165/DIALINFLOW.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165 -TIME: 2020-05-01 11:35:05 +TIME: 2020-05-01 13:04:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -4689,7 +4689,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e DIALINFLOW -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165 -TIME: 2020-05-01 11:35:07 +TIME: 2020-05-01 13:04:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -5504,7 +5504,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1829320893/DIALOUTFLOW.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1829320893 -TIME: 2020-05-01 11:35:13 +TIME: 2020-05-01 13:04:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1829320893/CCAST_.CFG @@ -5540,7 +5540,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e DIALOUTFLOW -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1829320893/DIALOUTFLOW.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1829320893 -TIME: 2020-05-01 11:35:20 +TIME: 2020-05-01 13:04:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6005,7 +6005,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e DIALOUTFLOW test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1829320893/DIALOUTFLOW.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1829320893 -TIME: 2020-05-01 11:35:26 +TIME: 2020-05-01 13:04:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6020,7 +6020,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e DIALOUTFLOW -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1829320893 -TIME: 2020-05-01 11:35:28 +TIME: 2020-05-01 13:04:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -6809,7 +6809,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/74827183/DIALYSIS.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/74827183 -TIME: 2020-05-01 11:35:34 +TIME: 2020-05-01 13:04:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/74827183/CCAST_.CFG @@ -6844,7 +6844,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e DIALYSIS -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/74827183/DIALYSIS.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/74827183 -TIME: 2020-05-01 11:35:40 +TIME: 2020-05-01 13:04:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7058,7 +7058,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e DIALYSIS test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/74827183/DIALYSIS.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/74827183 -TIME: 2020-05-01 11:35:44 +TIME: 2020-05-01 13:04:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7073,7 +7073,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e DIALYSIS tools import_coverage /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/DIALYSIS/DIALYSIS_cba.cvr DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/74827183 -TIME: 2020-05-01 11:35:46 +TIME: 2020-05-01 13:04:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7095,7 +7095,7 @@ >>> File processing completed for /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/DIALYSIS/DIALYSIS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e DIALYSIS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/74827183 -TIME: 2020-05-01 11:35:47 +TIME: 2020-05-01 13:04:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -7428,7 +7428,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326 -TIME: 2020-05-01 11:35:50 +TIME: 2020-05-01 13:04:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/CCAST_.CFG @@ -7463,7 +7463,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e FPGA -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326 -TIME: 2020-05-01 11:35:57 +TIME: 2020-05-01 13:04:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8119,7 +8119,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e FPGA -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326 -TIME: 2020-05-01 11:36:04 +TIME: 2020-05-01 13:04:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8559,7 +8559,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493 -TIME: 2020-05-01 11:36:09 +TIME: 2020-05-01 13:05:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/CCAST_.CFG @@ -8595,7 +8595,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493 -TIME: 2020-05-01 11:36:16 +TIME: 2020-05-01 13:05:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8755,7 +8755,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493 -TIME: 2020-05-01 11:36:20 +TIME: 2020-05-01 13:05:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -8934,7 +8934,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112 -TIME: 2020-05-01 11:36:23 +TIME: 2020-05-01 13:05:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/CCAST_.CFG @@ -9025,7 +9025,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMLAMP -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112 -TIME: 2020-05-01 11:36:42 +TIME: 2020-05-01 13:05:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9077,7 +9077,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMLAMP test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112 -TIME: 2020-05-01 11:36:48 +TIME: 2020-05-01 13:05:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9092,7 +9092,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMLAMP -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112 -TIME: 2020-05-01 11:36:50 +TIME: 2020-05-01 13:05:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9151,7 +9151,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406 -TIME: 2020-05-01 11:36:52 +TIME: 2020-05-01 13:05:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/CCAST_.CFG @@ -9241,7 +9241,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406 -TIME: 2020-05-01 11:37:12 +TIME: 2020-05-01 13:05:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9315,7 +9315,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406 -TIME: 2020-05-01 11:37:18 +TIME: 2020-05-01 13:06:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9330,7 +9330,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT tools import_coverage /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_ALARMMGMT/INT_ALARMMGMT_cba.cvr DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406 -TIME: 2020-05-01 11:37:19 +TIME: 2020-05-01 13:06:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9362,7 +9362,7 @@ >>> File processing completed for /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_ALARMMGMT/INT_ALARMMGMT_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406 -TIME: 2020-05-01 11:37:21 +TIME: 2020-05-01 13:06:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9459,7 +9459,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850 -TIME: 2020-05-01 11:37:24 +TIME: 2020-05-01 13:06:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/CCAST_.CFG @@ -9540,7 +9540,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_BLOODFLOW -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850 -TIME: 2020-05-01 11:37:39 +TIME: 2020-05-01 13:06:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9585,7 +9585,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_BLOODFLOW test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850 -TIME: 2020-05-01 11:37:43 +TIME: 2020-05-01 13:06:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9600,7 +9600,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_BLOODFLOW tools import_coverage /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_BLOODFLOW/INT_BLOODFLOW_cba.cvr DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850 -TIME: 2020-05-01 11:37:45 +TIME: 2020-05-01 13:06:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9630,7 +9630,7 @@ >>> File processing completed for /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_BLOODFLOW/INT_BLOODFLOW_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_BLOODFLOW -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850 -TIME: 2020-05-01 11:37:47 +TIME: 2020-05-01 13:06:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9674,7 +9674,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736 -TIME: 2020-05-01 11:37:50 +TIME: 2020-05-01 13:06:31 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/CCAST_.CFG @@ -9756,7 +9756,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_BUTTONS -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736 -TIME: 2020-05-01 11:38:06 +TIME: 2020-05-01 13:06:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9819,7 +9819,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_BUTTONS test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736 -TIME: 2020-05-01 11:38:11 +TIME: 2020-05-01 13:06:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9834,7 +9834,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_BUTTONS tools import_coverage /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_BUTTONS/INT_BUTTONS_cba.cvr DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736 -TIME: 2020-05-01 11:38:12 +TIME: 2020-05-01 13:06:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9864,7 +9864,7 @@ >>> File processing completed for /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_BUTTONS/INT_BUTTONS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_BUTTONS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736 -TIME: 2020-05-01 11:38:14 +TIME: 2020-05-01 13:06:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -9938,7 +9938,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052 -TIME: 2020-05-01 11:38:16 +TIME: 2020-05-01 13:06:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/CCAST_.CFG @@ -10014,7 +10014,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052 -TIME: 2020-05-01 11:38:31 +TIME: 2020-05-01 13:07:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10056,7 +10056,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052 -TIME: 2020-05-01 11:38:36 +TIME: 2020-05-01 13:07:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10071,7 +10071,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052 -TIME: 2020-05-01 11:38:38 +TIME: 2020-05-01 13:07:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10107,7 +10107,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026 -TIME: 2020-05-01 11:38:40 +TIME: 2020-05-01 13:07:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/CCAST_.CFG @@ -10126,7 +10126,7 @@ File: CPLD.c (using cached data) QuickParse Utility Completed Calling QuickParse Utility for /home/fw/wshd/hdfirmware/firmware/App/Services/ - File: WatchdogMgmt.c (using cached data) + File: WatchdogMgmt.c QuickParse Utility Completed Unit 8 (not-stubbed): User Defined Globals Parsing @@ -10188,7 +10188,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026 -TIME: 2020-05-01 11:38:55 +TIME: 2020-05-01 13:07:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10244,7 +10244,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026 -TIME: 2020-05-01 11:38:59 +TIME: 2020-05-01 13:07:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10259,7 +10259,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD tools import_coverage /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_CPLD/INT_CPLD_cba.cvr DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026 -TIME: 2020-05-01 11:39:01 +TIME: 2020-05-01 13:07:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10289,7 +10289,7 @@ >>> File processing completed for /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_CPLD/INT_CPLD_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026 -TIME: 2020-05-01 11:39:02 +TIME: 2020-05-01 13:07:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10356,7 +10356,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133/INT_DIALINFLOW.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133 -TIME: 2020-05-01 11:39:04 +TIME: 2020-05-01 13:07:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133/CCAST_.CFG @@ -10446,7 +10446,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_DIALINFLOW -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133/INT_DIALINFLOW.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133 -TIME: 2020-05-01 11:39:21 +TIME: 2020-05-01 13:08:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10492,7 +10492,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_DIALINFLOW test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133/INT_DIALINFLOW.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133 -TIME: 2020-05-01 11:39:25 +TIME: 2020-05-01 13:08:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10507,7 +10507,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_DIALINFLOW tools import_coverage /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_DIALINFLOW/INT_DIALINFLOW_cba.cvr DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133 -TIME: 2020-05-01 11:39:26 +TIME: 2020-05-01 13:08:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10539,7 +10539,7 @@ >>> File processing completed for /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_DIALINFLOW/INT_DIALINFLOW_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_DIALINFLOW -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133 -TIME: 2020-05-01 11:39:28 +TIME: 2020-05-01 13:08:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10583,7 +10583,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3048796522/INT_DIALOUTFLOW.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3048796522 -TIME: 2020-05-01 11:39:30 +TIME: 2020-05-01 13:08:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3048796522/CCAST_.CFG @@ -10684,7 +10684,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_DIALOUTFLOW -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3048796522/INT_DIALOUTFLOW.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3048796522 -TIME: 2020-05-01 11:39:50 +TIME: 2020-05-01 13:08:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10745,7 +10745,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_DIALOUTFLOW test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3048796522/INT_DIALOUTFLOW.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3048796522 -TIME: 2020-05-01 11:39:55 +TIME: 2020-05-01 13:08:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10760,7 +10760,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_DIALOUTFLOW tools import_coverage /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_DIALOUTFLOW/INT_DIALOUTFLOW_cba.cvr DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3048796522 -TIME: 2020-05-01 11:39:56 +TIME: 2020-05-01 13:08:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10794,7 +10794,7 @@ >>> File processing completed for /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_DIALOUTFLOW/INT_DIALOUTFLOW_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_DIALOUTFLOW -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3048796522 -TIME: 2020-05-01 11:39:58 +TIME: 2020-05-01 13:08:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10868,7 +10868,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/881240764/INT_DIALYSIS.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/881240764 -TIME: 2020-05-01 11:40:01 +TIME: 2020-05-01 13:08:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/881240764/CCAST_.CFG @@ -10915,7 +10915,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_DIALYSIS -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/881240764/INT_DIALYSIS.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/881240764 -TIME: 2020-05-01 11:40:09 +TIME: 2020-05-01 13:08:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -10984,7 +10984,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_DIALYSIS tools import_coverage /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_DIALYSIS/INT_DIALYSIS_cba.cvr DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/881240764 -TIME: 2020-05-01 11:40:12 +TIME: 2020-05-01 13:08:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11008,7 +11008,7 @@ >>> File processing completed for /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_DIALYSIS/INT_DIALYSIS_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_DIALYSIS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/881240764 -TIME: 2020-05-01 11:40:14 +TIME: 2020-05-01 13:08:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11076,7 +11076,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524 -TIME: 2020-05-01 11:40:16 +TIME: 2020-05-01 13:08:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/CCAST_.CFG @@ -11186,7 +11186,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524 -TIME: 2020-05-01 11:40:37 +TIME: 2020-05-01 13:09:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11334,7 +11334,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA tools import_coverage /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_FPGA/INT_FPGA_cba.cvr DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524 -TIME: 2020-05-01 11:40:42 +TIME: 2020-05-01 13:09:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11370,7 +11370,7 @@ >>> File processing completed for /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_FPGA/INT_FPGA_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524 -TIME: 2020-05-01 11:40:44 +TIME: 2020-05-01 13:09:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11445,7 +11445,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4003473575/INT_MODETREATMENT.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4003473575 -TIME: 2020-05-01 11:40:46 +TIME: 2020-05-01 13:09:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4003473575/CCAST_.CFG @@ -11512,7 +11512,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODETREATMENT -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4003473575/INT_MODETREATMENT.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4003473575 -TIME: 2020-05-01 11:40:59 +TIME: 2020-05-01 13:09:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11570,7 +11570,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODETREATMENT test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4003473575/INT_MODETREATMENT.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4003473575 -TIME: 2020-05-01 11:41:03 +TIME: 2020-05-01 13:09:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11585,7 +11585,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODETREATMENT tools import_coverage /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_MODETREATMENT/INT_MODETREATMENT_cba.cvr DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4003473575 -TIME: 2020-05-01 11:41:05 +TIME: 2020-05-01 13:09:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11613,7 +11613,7 @@ >>> File processing completed for /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_MODETREATMENT/INT_MODETREATMENT_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODETREATMENT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4003473575 -TIME: 2020-05-01 11:41:07 +TIME: 2020-05-01 13:09:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11681,7 +11681,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608 -TIME: 2020-05-01 11:41:09 +TIME: 2020-05-01 13:09:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/CCAST_.CFG @@ -11757,7 +11757,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608 -TIME: 2020-05-01 11:41:24 +TIME: 2020-05-01 13:10:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11803,7 +11803,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608 -TIME: 2020-05-01 11:41:29 +TIME: 2020-05-01 13:10:09 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11818,7 +11818,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608 -TIME: 2020-05-01 11:41:31 +TIME: 2020-05-01 13:10:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -11862,7 +11862,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1776554132/INT_NVDATAMGMT.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1776554132 -TIME: 2020-05-01 11:41:33 +TIME: 2020-05-01 13:10:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1776554132/CCAST_.CFG @@ -11934,7 +11934,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_NVDATAMGMT -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1776554132/INT_NVDATAMGMT.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1776554132 -TIME: 2020-05-01 11:41:47 +TIME: 2020-05-01 13:10:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12041,7 +12041,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_NVDATAMGMT test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1776554132/INT_NVDATAMGMT.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1776554132 -TIME: 2020-05-01 11:41:51 +TIME: 2020-05-01 13:10:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12056,7 +12056,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_NVDATAMGMT tools import_coverage /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_NVDATAMGMT/INT_NVDATAMGMT_cba.cvr DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1776554132 -TIME: 2020-05-01 11:41:53 +TIME: 2020-05-01 13:10:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12084,7 +12084,7 @@ >>> File processing completed for /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_NVDATAMGMT/INT_NVDATAMGMT_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_NVDATAMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1776554132 -TIME: 2020-05-01 11:41:55 +TIME: 2020-05-01 13:10:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12232,7 +12232,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110 -TIME: 2020-05-01 11:41:59 +TIME: 2020-05-01 13:10:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/CCAST_.CFG @@ -12312,7 +12312,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110 -TIME: 2020-05-01 11:42:14 +TIME: 2020-05-01 13:10:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12357,7 +12357,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110 -TIME: 2020-05-01 11:42:18 +TIME: 2020-05-01 13:10:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12372,7 +12372,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110 -TIME: 2020-05-01 11:42:19 +TIME: 2020-05-01 13:10:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12416,7 +12416,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3460059472/INT_PRESOCCL.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3460059472 -TIME: 2020-05-01 11:42:21 +TIME: 2020-05-01 13:10:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3460059472/CCAST_.CFG @@ -12476,7 +12476,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESOCCL -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3460059472/INT_PRESOCCL.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3460059472 -TIME: 2020-05-01 11:42:32 +TIME: 2020-05-01 13:11:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12512,7 +12512,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESOCCL test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3460059472/INT_PRESOCCL.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3460059472 -TIME: 2020-05-01 11:42:35 +TIME: 2020-05-01 13:11:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12527,7 +12527,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESOCCL tools import_coverage /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_PRESOCCL/INT_PRESOCCL_cba.cvr DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3460059472 -TIME: 2020-05-01 11:42:37 +TIME: 2020-05-01 13:11:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12553,7 +12553,7 @@ >>> File processing completed for /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_PRESOCCL/INT_PRESOCCL_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESOCCL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3460059472 -TIME: 2020-05-01 11:42:38 +TIME: 2020-05-01 13:11:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12581,7 +12581,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2486627120/INT_RTC.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2486627120 -TIME: 2020-05-01 11:42:40 +TIME: 2020-05-01 13:11:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2486627120/CCAST_.CFG @@ -12682,7 +12682,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2486627120/INT_RTC.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2486627120 -TIME: 2020-05-01 11:43:00 +TIME: 2020-05-01 13:11:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12782,7 +12782,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2486627120/INT_RTC.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2486627120 -TIME: 2020-05-01 11:43:06 +TIME: 2020-05-01 13:11:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12797,7 +12797,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC tools import_coverage /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_RTC/INT_RTC_cba.cvr DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2486627120 -TIME: 2020-05-01 11:43:07 +TIME: 2020-05-01 13:11:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12831,7 +12831,7 @@ >>> File processing completed for /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_RTC/INT_RTC_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2486627120 -TIME: 2020-05-01 11:43:09 +TIME: 2020-05-01 13:11:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -12968,7 +12968,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 -TIME: 2020-05-01 11:43:12 +TIME: 2020-05-01 13:11:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/CCAST_.CFG @@ -13017,7 +13017,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 -TIME: 2020-05-01 11:43:20 +TIME: 2020-05-01 13:12:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13049,7 +13049,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 -TIME: 2020-05-01 11:43:23 +TIME: 2020-05-01 13:12:03 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13064,7 +13064,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN tools import_coverage /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_SAFETYSHUTDOWN/INT_SAFETYSHUTDOWN_cba.cvr DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 -TIME: 2020-05-01 11:43:24 +TIME: 2020-05-01 13:12:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13088,7 +13088,7 @@ >>> File processing completed for /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_SAFETYSHUTDOWN/INT_SAFETYSHUTDOWN_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 -TIME: 2020-05-01 11:43:25 +TIME: 2020-05-01 13:12:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13108,7 +13108,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618 -TIME: 2020-05-01 11:43:27 +TIME: 2020-05-01 13:12:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/CCAST_.CFG @@ -13205,7 +13205,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618 -TIME: 2020-05-01 11:43:44 +TIME: 2020-05-01 13:12:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13411,7 +13411,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM tools import_coverage /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_SYSTEMCOMM/INT_SYSTEMCOMM_cba.cvr DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618 -TIME: 2020-05-01 11:43:49 +TIME: 2020-05-01 13:12:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13445,7 +13445,7 @@ >>> File processing completed for /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_SYSTEMCOMM/INT_SYSTEMCOMM_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618 -TIME: 2020-05-01 11:43:51 +TIME: 2020-05-01 13:12:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13520,7 +13520,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150 -TIME: 2020-05-01 11:43:53 +TIME: 2020-05-01 13:12:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/CCAST_.CFG @@ -13672,7 +13672,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150 -TIME: 2020-05-01 11:44:21 +TIME: 2020-05-01 13:13:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13920,7 +13920,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES tools import_coverage /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_SYSTEMCOMMMESSAGES/INT_SYSTEMCOMMMESSAGES_cba.cvr DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150 -TIME: 2020-05-01 11:44:28 +TIME: 2020-05-01 13:13:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -13966,7 +13966,7 @@ >>> File processing completed for /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/INT_SYSTEMCOMMMESSAGES/INT_SYSTEMCOMMMESSAGES_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150 -TIME: 2020-05-01 11:44:30 +TIME: 2020-05-01 13:13:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14334,7 +14334,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646 -TIME: 2020-05-01 11:44:34 +TIME: 2020-05-01 13:13:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/CCAST_.CFG @@ -14425,7 +14425,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646 -TIME: 2020-05-01 11:44:50 +TIME: 2020-05-01 13:13:33 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14473,7 +14473,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646 -TIME: 2020-05-01 11:44:54 +TIME: 2020-05-01 13:13:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14488,7 +14488,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646 -TIME: 2020-05-01 11:44:56 +TIME: 2020-05-01 13:13:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14540,7 +14540,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653 -TIME: 2020-05-01 11:44:58 +TIME: 2020-05-01 13:13:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/CCAST_.CFG @@ -14598,7 +14598,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653 -TIME: 2020-05-01 11:45:08 +TIME: 2020-05-01 13:13:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14635,7 +14635,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653 -TIME: 2020-05-01 11:45:12 +TIME: 2020-05-01 13:13:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14650,7 +14650,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653 -TIME: 2020-05-01 11:45:14 +TIME: 2020-05-01 13:13:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14678,7 +14678,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182 -TIME: 2020-05-01 11:45:16 +TIME: 2020-05-01 13:13:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/CCAST_.CFG @@ -14767,7 +14767,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182 -TIME: 2020-05-01 11:45:32 +TIME: 2020-05-01 13:14:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14821,7 +14821,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182 -TIME: 2020-05-01 11:45:36 +TIME: 2020-05-01 13:14:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14836,7 +14836,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182 -TIME: 2020-05-01 11:45:38 +TIME: 2020-05-01 13:14:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -14895,7 +14895,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3261192666/MODETREATMENT.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3261192666 -TIME: 2020-05-01 11:45:40 +TIME: 2020-05-01 13:14:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3261192666/CCAST_.CFG @@ -14930,7 +14930,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MODETREATMENT -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3261192666/MODETREATMENT.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3261192666 -TIME: 2020-05-01 11:45:46 +TIME: 2020-05-01 13:14:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15213,7 +15213,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODETREATMENT test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3261192666/MODETREATMENT.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3261192666 -TIME: 2020-05-01 11:45:51 +TIME: 2020-05-01 13:14:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15228,7 +15228,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MODETREATMENT tools import_coverage /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/MODETREATMENT/MODETREATMENT_cba.cvr DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3261192666 -TIME: 2020-05-01 11:45:52 +TIME: 2020-05-01 13:14:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15250,7 +15250,7 @@ >>> File processing completed for /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/MODETREATMENT/MODETREATMENT_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e MODETREATMENT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3261192666 -TIME: 2020-05-01 11:45:54 +TIME: 2020-05-01 13:14:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15674,7 +15674,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785 -TIME: 2020-05-01 11:45:58 +TIME: 2020-05-01 13:14:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/CCAST_.CFG @@ -15709,7 +15709,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785 -TIME: 2020-05-01 11:46:03 +TIME: 2020-05-01 13:14:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15810,7 +15810,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785 -TIME: 2020-05-01 11:46:06 +TIME: 2020-05-01 13:14:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15825,7 +15825,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785 -TIME: 2020-05-01 11:46:08 +TIME: 2020-05-01 13:14:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -15963,7 +15963,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3573947708/NVDATAMGMT.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3573947708 -TIME: 2020-05-01 11:46:10 +TIME: 2020-05-01 13:14:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3573947708/CCAST_.CFG @@ -15999,7 +15999,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e NVDATAMGMT -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3573947708/NVDATAMGMT.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3573947708 -TIME: 2020-05-01 11:46:17 +TIME: 2020-05-01 13:15:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -16657,7 +16657,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e NVDATAMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3573947708 -TIME: 2020-05-01 11:46:22 +TIME: 2020-05-01 13:15:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17718,7 +17718,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158 -TIME: 2020-05-01 11:46:28 +TIME: 2020-05-01 13:15:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/CCAST_.CFG @@ -17753,7 +17753,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158 -TIME: 2020-05-01 11:46:34 +TIME: 2020-05-01 13:15:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17896,7 +17896,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158 -TIME: 2020-05-01 11:46:38 +TIME: 2020-05-01 13:15:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -17911,7 +17911,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158 -TIME: 2020-05-01 11:46:40 +TIME: 2020-05-01 13:15:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18126,7 +18126,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4274994755/PRESOCCL.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4274994755 -TIME: 2020-05-01 11:46:42 +TIME: 2020-05-01 13:15:26 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4274994755/CCAST_.CFG @@ -18161,7 +18161,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e PRESOCCL -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4274994755/PRESOCCL.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4274994755 -TIME: 2020-05-01 11:46:48 +TIME: 2020-05-01 13:15:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18423,7 +18423,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PRESOCCL test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4274994755/PRESOCCL.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4274994755 -TIME: 2020-05-01 11:46:52 +TIME: 2020-05-01 13:15:36 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18438,7 +18438,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e PRESOCCL tools import_coverage /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/PRESOCCL/PRESOCCL_cba.cvr DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4274994755 -TIME: 2020-05-01 11:46:54 +TIME: 2020-05-01 13:15:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18460,7 +18460,7 @@ >>> File processing completed for /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/environment/PRESOCCL/PRESOCCL_cba.cvr COMMAND: /opt/VectorCASTSP3/clicast -e PRESOCCL -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4274994755 -TIME: 2020-05-01 11:46:55 +TIME: 2020-05-01 13:15:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -18883,7 +18883,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/428499850/RTC.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/428499850 -TIME: 2020-05-01 11:46:59 +TIME: 2020-05-01 13:15:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/428499850/CCAST_.CFG @@ -18919,7 +18919,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e RTC -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/428499850/RTC.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/428499850 -TIME: 2020-05-01 11:47:05 +TIME: 2020-05-01 13:15:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -19669,7 +19669,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e RTC -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/428499850 -TIME: 2020-05-01 11:47:09 +TIME: 2020-05-01 13:15:54 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -20474,7 +20474,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383 -TIME: 2020-05-01 11:47:13 +TIME: 2020-05-01 13:16:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/CCAST_.CFG @@ -20509,7 +20509,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383 -TIME: 2020-05-01 11:47:17 +TIME: 2020-05-01 13:16:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -20545,7 +20545,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383 -TIME: 2020-05-01 11:47:20 +TIME: 2020-05-01 13:16:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -20560,7 +20560,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383 -TIME: 2020-05-01 11:47:22 +TIME: 2020-05-01 13:16:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -20588,7 +20588,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922 -TIME: 2020-05-01 11:47:24 +TIME: 2020-05-01 13:16:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/CCAST_.CFG @@ -20623,7 +20623,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922 -TIME: 2020-05-01 11:47:30 +TIME: 2020-05-01 13:16:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21147,7 +21147,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922 -TIME: 2020-05-01 11:47:36 +TIME: 2020-05-01 13:16:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -21931,7 +21931,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163 -TIME: 2020-05-01 11:47:41 +TIME: 2020-05-01 13:16:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/CCAST_.CFG @@ -21966,7 +21966,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163 -TIME: 2020-05-01 11:47:48 +TIME: 2020-05-01 13:16:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -23025,7 +23025,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163 -TIME: 2020-05-01 11:47:57 +TIME: 2020-05-01 13:16:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24336,7 +24336,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705 -TIME: 2020-05-01 11:48:07 +TIME: 2020-05-01 13:16:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/CCAST_.CFG @@ -24371,7 +24371,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705 -TIME: 2020-05-01 11:48:12 +TIME: 2020-05-01 13:17:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24444,7 +24444,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705 -TIME: 2020-05-01 11:48:15 +TIME: 2020-05-01 13:17:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24459,7 +24459,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705 -TIME: 2020-05-01 11:48:16 +TIME: 2020-05-01 13:17:05 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24554,7 +24554,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276 -TIME: 2020-05-01 11:48:19 +TIME: 2020-05-01 13:17:07 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/CCAST_.CFG @@ -24589,7 +24589,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276 -TIME: 2020-05-01 11:48:24 +TIME: 2020-05-01 13:17:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24630,7 +24630,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276 -TIME: 2020-05-01 11:48:27 +TIME: 2020-05-01 13:17:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24645,7 +24645,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276 -TIME: 2020-05-01 11:48:29 +TIME: 2020-05-01 13:17:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24680,7 +24680,7 @@ Completed Batch Execution processing COMMAND: /opt/VectorCASTSP3/enviroedg /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT.env DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848 -TIME: 2020-05-01 11:48:31 +TIME: 2020-05-01 13:17:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite **Environment Builder Version 19.sp3 (11/13/19) Processing options file /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/CCAST_.CFG @@ -24715,7 +24715,7 @@ Environment built Successfully COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT -l C test script convert /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT.tst.tmp DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848 -TIME: 2020-05-01 11:48:36 +TIME: 2020-05-01 13:17:24 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24867,7 +24867,7 @@ >>> Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT test script create /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848/WATCHDOGMGMT.tst DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848 -TIME: 2020-05-01 11:48:40 +TIME: 2020-05-01 13:17:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -24882,7 +24882,7 @@ Script processing completed COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT -l C execute batch --update_coverage_data DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848 -TIME: 2020-05-01 11:48:42 +TIME: 2020-05-01 13:17:29 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25119,7 +25119,7 @@ Calling /opt/VectorCASTSP3/manage --project=Hercules_RM46_HD_Project.vcm --clicast-args report custom management ... COMMAND: /opt/VectorCASTSP3/clicast -e ALARMLAMP report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009 -TIME: 2020-05-01 11:48:51 +TIME: 2020-05-01 13:17:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25131,7 +25131,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791 -TIME: 2020-05-01 11:48:53 +TIME: 2020-05-01 13:17:41 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25143,7 +25143,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e BLOODFLOW report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643 -TIME: 2020-05-01 11:48:55 +TIME: 2020-05-01 13:17:43 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25155,7 +25155,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e BUTTONS report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415 -TIME: 2020-05-01 11:48:58 +TIME: 2020-05-01 13:17:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25167,7 +25167,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMM report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408 -TIME: 2020-05-01 11:49:00 +TIME: 2020-05-01 13:17:48 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25179,7 +25179,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491 -TIME: 2020-05-01 11:49:02 +TIME: 2020-05-01 13:17:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25191,7 +25191,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CPLD report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 -TIME: 2020-05-01 11:49:04 +TIME: 2020-05-01 13:17:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25203,7 +25203,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e DIALINFLOW report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165 -TIME: 2020-05-01 11:49:05 +TIME: 2020-05-01 13:17:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25215,7 +25215,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165/DIALINFLOW_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e DIALOUTFLOW report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1829320893 -TIME: 2020-05-01 11:49:08 +TIME: 2020-05-01 13:17:56 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25227,7 +25227,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1829320893/DIALOUTFLOW_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e DIALYSIS report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/74827183 -TIME: 2020-05-01 11:49:10 +TIME: 2020-05-01 13:17:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25239,7 +25239,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/74827183/DIALYSIS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e FPGA report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326 -TIME: 2020-05-01 11:49:12 +TIME: 2020-05-01 13:18:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25251,7 +25251,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493 -TIME: 2020-05-01 11:49:14 +TIME: 2020-05-01 13:18:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25263,7 +25263,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMLAMP report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112 -TIME: 2020-05-01 11:49:16 +TIME: 2020-05-01 13:18:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25275,7 +25275,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406 -TIME: 2020-05-01 11:49:18 +TIME: 2020-05-01 13:18:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25287,7 +25287,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_BLOODFLOW report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850 -TIME: 2020-05-01 11:49:21 +TIME: 2020-05-01 13:18:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25299,7 +25299,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_BUTTONS report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736 -TIME: 2020-05-01 11:49:23 +TIME: 2020-05-01 13:18:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25311,7 +25311,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052 -TIME: 2020-05-01 11:49:25 +TIME: 2020-05-01 13:18:13 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25323,7 +25323,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026 -TIME: 2020-05-01 11:49:27 +TIME: 2020-05-01 13:18:15 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25335,7 +25335,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_DIALINFLOW report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133 -TIME: 2020-05-01 11:49:29 +TIME: 2020-05-01 13:18:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25347,7 +25347,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133/INT_DIALINFLOW_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_DIALOUTFLOW report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3048796522 -TIME: 2020-05-01 11:49:31 +TIME: 2020-05-01 13:18:19 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25359,7 +25359,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3048796522/INT_DIALOUTFLOW_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_DIALYSIS report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/881240764 -TIME: 2020-05-01 11:49:33 +TIME: 2020-05-01 13:18:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25371,7 +25371,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/881240764/INT_DIALYSIS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524 -TIME: 2020-05-01 11:49:35 +TIME: 2020-05-01 13:18:23 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25383,7 +25383,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODETREATMENT report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4003473575 -TIME: 2020-05-01 11:49:37 +TIME: 2020-05-01 13:18:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25395,7 +25395,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4003473575/INT_MODETREATMENT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608 -TIME: 2020-05-01 11:49:39 +TIME: 2020-05-01 13:18:27 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25407,7 +25407,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_NVDATAMGMT report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1776554132 -TIME: 2020-05-01 11:49:41 +TIME: 2020-05-01 13:18:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25419,7 +25419,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1776554132/INT_NVDATAMGMT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110 -TIME: 2020-05-01 11:49:43 +TIME: 2020-05-01 13:18:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25431,7 +25431,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESOCCL report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3460059472 -TIME: 2020-05-01 11:49:45 +TIME: 2020-05-01 13:18:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25443,7 +25443,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3460059472/INT_PRESOCCL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2486627120 -TIME: 2020-05-01 11:49:47 +TIME: 2020-05-01 13:18:35 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25455,7 +25455,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2486627120/INT_RTC_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 -TIME: 2020-05-01 11:49:50 +TIME: 2020-05-01 13:18:38 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25467,7 +25467,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618 -TIME: 2020-05-01 11:49:51 +TIME: 2020-05-01 13:18:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25479,7 +25479,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150 -TIME: 2020-05-01 11:49:53 +TIME: 2020-05-01 13:18:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25491,7 +25491,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646 -TIME: 2020-05-01 11:49:56 +TIME: 2020-05-01 13:18:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25503,7 +25503,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653 -TIME: 2020-05-01 11:49:58 +TIME: 2020-05-01 13:18:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25515,7 +25515,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182 -TIME: 2020-05-01 11:50:00 +TIME: 2020-05-01 13:18:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25527,7 +25527,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODETREATMENT report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3261192666 -TIME: 2020-05-01 11:50:02 +TIME: 2020-05-01 13:18:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25539,7 +25539,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3261192666/MODETREATMENT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785 -TIME: 2020-05-01 11:50:04 +TIME: 2020-05-01 13:18:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25551,7 +25551,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e NVDATAMGMT report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3573947708 -TIME: 2020-05-01 11:50:06 +TIME: 2020-05-01 13:18:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25563,7 +25563,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3573947708/NVDATAMGMT_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158 -TIME: 2020-05-01 11:50:09 +TIME: 2020-05-01 13:18:57 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25575,7 +25575,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PRESOCCL report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4274994755 -TIME: 2020-05-01 11:50:11 +TIME: 2020-05-01 13:18:59 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25587,7 +25587,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4274994755/PRESOCCL_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e RTC report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/428499850 -TIME: 2020-05-01 11:50:13 +TIME: 2020-05-01 13:19:01 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25599,7 +25599,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/428499850/RTC_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383 -TIME: 2020-05-01 11:50:15 +TIME: 2020-05-01 13:19:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25611,7 +25611,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922 -TIME: 2020-05-01 11:50:17 +TIME: 2020-05-01 13:19:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25623,7 +25623,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163 -TIME: 2020-05-01 11:50:19 +TIME: 2020-05-01 13:19:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25635,7 +25635,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705 -TIME: 2020-05-01 11:50:21 +TIME: 2020-05-01 13:19:11 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25647,7 +25647,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276 -TIME: 2020-05-01 11:50:23 +TIME: 2020-05-01 13:19:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25659,7 +25659,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES_management_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT report custom management DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848 -TIME: 2020-05-01 11:50:25 +TIME: 2020-05-01 13:19:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25678,7 +25678,7 @@ Calling /opt/VectorCASTSP3/manage --project=Hercules_RM46_HD_Project.vcm --clicast-args report custom actual ... COMMAND: /opt/VectorCASTSP3/clicast -e ALARMLAMP report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009 -TIME: 2020-05-01 11:50:28 +TIME: 2020-05-01 13:19:17 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25690,7 +25690,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2212972009/ALARMLAMP_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e ALARMMGMT report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791 -TIME: 2020-05-01 11:50:30 +TIME: 2020-05-01 13:19:20 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25702,7 +25702,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/951818791/ALARMMGMT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e BLOODFLOW report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643 -TIME: 2020-05-01 11:50:32 +TIME: 2020-05-01 13:19:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25714,7 +25714,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2470114643/BLOODFLOW_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e BUTTONS report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415 -TIME: 2020-05-01 11:50:35 +TIME: 2020-05-01 13:19:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25726,7 +25726,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2437222415/BUTTONS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMM report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408 -TIME: 2020-05-01 11:50:37 +TIME: 2020-05-01 13:19:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25738,7 +25738,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2974704408/COMM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e COMMBUFFERS report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491 -TIME: 2020-05-01 11:50:38 +TIME: 2020-05-01 13:19:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25750,7 +25750,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4019558491/COMMBUFFERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e CPLD report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776 -TIME: 2020-05-01 11:50:41 +TIME: 2020-05-01 13:19:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25762,7 +25762,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3337817776/CPLD_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e DIALINFLOW report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165 -TIME: 2020-05-01 11:50:43 +TIME: 2020-05-01 13:19:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25774,7 +25774,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3575231165/DIALINFLOW_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e DIALOUTFLOW report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1829320893 -TIME: 2020-05-01 11:50:46 +TIME: 2020-05-01 13:19:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25786,7 +25786,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1829320893/DIALOUTFLOW_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e DIALYSIS report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/74827183 -TIME: 2020-05-01 11:50:49 +TIME: 2020-05-01 13:19:40 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25798,7 +25798,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/74827183/DIALYSIS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e FPGA report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326 -TIME: 2020-05-01 11:50:51 +TIME: 2020-05-01 13:19:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25810,7 +25810,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1655952326/FPGA_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INTERRUPTS report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493 -TIME: 2020-05-01 11:50:54 +TIME: 2020-05-01 13:19:45 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25822,7 +25822,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3499035493/INTERRUPTS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMLAMP report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112 -TIME: 2020-05-01 11:50:56 +TIME: 2020-05-01 13:19:47 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25834,7 +25834,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/124385112/INT_ALARMLAMP_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_ALARMMGMT report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406 -TIME: 2020-05-01 11:50:58 +TIME: 2020-05-01 13:19:49 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25846,7 +25846,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3157600406/INT_ALARMMGMT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_BLOODFLOW report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850 -TIME: 2020-05-01 11:51:01 +TIME: 2020-05-01 13:19:51 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25858,7 +25858,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/397690850/INT_BLOODFLOW_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_BUTTONS report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736 -TIME: 2020-05-01 11:51:03 +TIME: 2020-05-01 13:19:53 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25870,7 +25870,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3621120736/INT_BUTTONS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_COMMBUFFERS report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052 -TIME: 2020-05-01 11:51:05 +TIME: 2020-05-01 13:19:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25882,7 +25882,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/925127052/INT_COMMBUFFERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_CPLD report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026 -TIME: 2020-05-01 11:51:07 +TIME: 2020-05-01 13:19:58 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25894,7 +25894,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3989498026/INT_CPLD_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_DIALINFLOW report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133 -TIME: 2020-05-01 11:51:09 +TIME: 2020-05-01 13:20:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25906,7 +25906,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1778106133/INT_DIALINFLOW_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_DIALOUTFLOW report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3048796522 -TIME: 2020-05-01 11:51:12 +TIME: 2020-05-01 13:20:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25918,7 +25918,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3048796522/INT_DIALOUTFLOW_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_DIALYSIS report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/881240764 -TIME: 2020-05-01 11:51:14 +TIME: 2020-05-01 13:20:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25930,7 +25930,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/881240764/INT_DIALYSIS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_FPGA report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524 -TIME: 2020-05-01 11:51:16 +TIME: 2020-05-01 13:20:06 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25942,7 +25942,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1233794524/INT_FPGA_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MODETREATMENT report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4003473575 -TIME: 2020-05-01 11:51:18 +TIME: 2020-05-01 13:20:08 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25954,7 +25954,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4003473575/INT_MODETREATMENT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_MSGQUEUES report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608 -TIME: 2020-05-01 11:51:21 +TIME: 2020-05-01 13:20:10 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25966,7 +25966,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3336905608/INT_MSGQUEUES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_NVDATAMGMT report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1776554132 -TIME: 2020-05-01 11:51:23 +TIME: 2020-05-01 13:20:12 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25978,7 +25978,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1776554132/INT_NVDATAMGMT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_OPERATIONMODES report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110 -TIME: 2020-05-01 11:51:25 +TIME: 2020-05-01 13:20:14 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -25990,7 +25990,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/553544110/INT_OPERATIONMODES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_PRESOCCL report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3460059472 -TIME: 2020-05-01 11:51:27 +TIME: 2020-05-01 13:20:16 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26002,7 +26002,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3460059472/INT_PRESOCCL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_RTC report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2486627120 -TIME: 2020-05-01 11:51:29 +TIME: 2020-05-01 13:20:18 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26014,7 +26014,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2486627120/INT_RTC_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SAFETYSHUTDOWN report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471 -TIME: 2020-05-01 11:51:31 +TIME: 2020-05-01 13:20:21 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26026,7 +26026,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/690517471/INT_SAFETYSHUTDOWN_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMM report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618 -TIME: 2020-05-01 11:51:33 +TIME: 2020-05-01 13:20:22 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26038,7 +26038,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2689133618/INT_SYSTEMCOMM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_SYSTEMCOMMMESSAGES report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150 -TIME: 2020-05-01 11:51:35 +TIME: 2020-05-01 13:20:25 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26050,7 +26050,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/2381647150/INT_SYSTEMCOMMMESSAGES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_TIMERS report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646 -TIME: 2020-05-01 11:51:38 +TIME: 2020-05-01 13:20:28 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26062,7 +26062,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/189936646/INT_TIMERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_UTILITIES report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653 -TIME: 2020-05-01 11:51:40 +TIME: 2020-05-01 13:20:30 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26074,7 +26074,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1824960653/INT_UTILITIES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e INT_WATCHDOGMGMT report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182 -TIME: 2020-05-01 11:51:42 +TIME: 2020-05-01 13:20:32 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26086,7 +26086,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1429379182/INT_WATCHDOGMGMT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MODETREATMENT report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3261192666 -TIME: 2020-05-01 11:51:44 +TIME: 2020-05-01 13:20:34 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26098,7 +26098,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3261192666/MODETREATMENT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e MSGQUEUES report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785 -TIME: 2020-05-01 11:51:47 +TIME: 2020-05-01 13:20:37 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26110,7 +26110,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1114345785/MSGQUEUES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e NVDATAMGMT report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3573947708 -TIME: 2020-05-01 11:51:49 +TIME: 2020-05-01 13:20:39 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26122,7 +26122,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3573947708/NVDATAMGMT_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e OPERATIONMODES report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158 -TIME: 2020-05-01 11:51:53 +TIME: 2020-05-01 13:20:42 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26134,7 +26134,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/241608158/OPERATIONMODES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e PRESOCCL report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4274994755 -TIME: 2020-05-01 11:51:55 +TIME: 2020-05-01 13:20:44 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26146,7 +26146,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4274994755/PRESOCCL_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e RTC report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/428499850 -TIME: 2020-05-01 11:51:58 +TIME: 2020-05-01 13:20:46 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26158,7 +26158,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/428499850/RTC_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SAFETYSHUTDOWN report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383 -TIME: 2020-05-01 11:52:02 +TIME: 2020-05-01 13:20:50 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26170,7 +26170,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/129022383/SAFETYSHUTDOWN_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMM report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922 -TIME: 2020-05-01 11:52:04 +TIME: 2020-05-01 13:20:52 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26182,7 +26182,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/480960922/SYSTEMCOMM_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e SYSTEMCOMMMESSAGES report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163 -TIME: 2020-05-01 11:52:08 +TIME: 2020-05-01 13:20:55 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26194,7 +26194,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/456249163/SYSTEMCOMMMESSAGES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e TIMERS report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705 -TIME: 2020-05-01 11:52:12 +TIME: 2020-05-01 13:21:00 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26206,7 +26206,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/4061569705/TIMERS_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e UTILITIES report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276 -TIME: 2020-05-01 11:52:13 +TIME: 2020-05-01 13:21:02 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19) @@ -26218,7 +26218,7 @@ The HTML report was saved to "/home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/3897033276/UTILITIES_execution_results_report.html". COMMAND: /opt/VectorCASTSP3/clicast -e WATCHDOGMGMT report custom actual DIRECTORY: /home/fw/wshd/hdfirmware/vectorcast/Hercules_RM46_HD_Project/build/1297968848 -TIME: 2020-05-01 11:52:15 +TIME: 2020-05-01 13:21:04 TEST SUITE: VectorCAST_MinGW_C/LinuxTestSuite VectorCAST Copyright (C) 1993 - 2020 **Version 19.sp3 (11/13/19)