Index: TestSupport.h =================================================================== diff -u -r9e1f1a6979c06dafaaf5f95912de5bc25a10f86c -r513e8f2b6d79f4181dc8e38e48743ada3037b5c7 --- TestSupport.h (.../TestSupport.h) (revision 9e1f1a6979c06dafaaf5f95912de5bc25a10f86c) +++ TestSupport.h (.../TestSupport.h) (revision 513e8f2b6d79f4181dc8e38e48743ada3037b5c7) @@ -68,6 +68,9 @@ TEST_CONFIG_FP_ENABLE_BOOST_PUMP, ///< Test configuration FP to enable P40 boost pump TEST_CONFIG_FP_ENABLE_DEFEATURE, ///< Test configuration FP to set sub system as defeatured TEST_CONFIG_DD_FP_DISABLE_CONDUCTIVITY_SENSOR_CHECKS, ///< Test configuration to disable conductivity sensor cal checks + TEST_CONFIG_DISABLE_CAPS_MONITOR, ///< Test configuration to disable cap monitor. + TEST_CONFIG_DISABLE_VOLTAGES_ALARMS, ///< Test configuration to disable voltages alarms. + TEST_CONFIG_DISABLE_ALARM_AUDIO, ///< Test configuration to disable alarm audio. NUM_OF_TEST_CONFIGS ///< Number of test configuration. } TEST_CONFIG_T; #endif Index: WatchdogMgmt.c =================================================================== diff -u -rca1d590217b1bfd14f0e0682f88e04de076ff199 -r513e8f2b6d79f4181dc8e38e48743ada3037b5c7 --- WatchdogMgmt.c (.../WatchdogMgmt.c) (revision ca1d590217b1bfd14f0e0682f88e04de076ff199) +++ WatchdogMgmt.c (.../WatchdogMgmt.c) (revision 513e8f2b6d79f4181dc8e38e48743ada3037b5c7) @@ -231,7 +231,7 @@ // else if ( audioCurrent < MIN_BACKUP_ALARM_CURRENT_MA ) // { //#ifndef _RELEASE_ -// if ( getSoftwareConfigStatus( SW_CONFIG_DISABLE_ALARM_AUDIO ) != SW_CONFIG_ENABLE_VALUE ) +// if ( getTestConfigStatus( TEST_CONFIG_DISABLE_ALARM_AUDIO ) != TRUE ) //#endif // { // SET_ALARM_WITH_2_F32_DATA( ALARM_ID_HD_WATCHDOG_POST_TEST_FAILED, 3.0F, audioCurrent ); @@ -270,7 +270,7 @@ // else if ( audioCurrent > MAX_BACKUP_ALARM_CURRENT_MA ) // { //#ifndef _RELEASE_ -// if ( getSoftwareConfigStatus( SW_CONFIG_DISABLE_ALARM_AUDIO ) != SW_CONFIG_ENABLE_VALUE ) +// if ( getTestConfigStatus( TEST_CONFIG_DISABLE_ALARM_AUDIO ) != TRUE ) //#endif // { // SET_ALARM_WITH_2_F32_DATA( ALARM_ID_HD_WATCHDOG_POST_TEST_FAILED, 5.0F, audioCurrent );