Index: firmware/App/Modes/ModeFill.c =================================================================== diff -u -r3bd1f9459a97de4d4f5c09c377c5c0d10235a436 -r27792ea3eb8f23c8f0432620619fad4f654bdbe3 --- firmware/App/Modes/ModeFill.c (.../ModeFill.c) (revision 3bd1f9459a97de4d4f5c09c377c5c0d10235a436) +++ firmware/App/Modes/ModeFill.c (.../ModeFill.c) (revision 27792ea3eb8f23c8f0432620619fad4f654bdbe3) @@ -1383,6 +1383,27 @@ /*********************************************************************//** * @brief + * The testSetEnableTestChemsCondValuesStatus function enables the testing + * of acid and bicarb conductivity values after priming. + * @details Inputs: none + * @details Outputs: fillStatus.isPrimeCondChecksSkipped + * @return TRUE if set successful, FALSE if not + *************************************************************************/ +BOOL testSetEnableTestChemsCondValuesStatus( void ) +{ + BOOL result = FALSE; + + if ( TRUE == isTestingActivated() ) + { + fillStatus.isPrimeCondChecksSkipped = FALSE; + result = TRUE; + } + + return result; +} + +/*********************************************************************//** + * @brief * The testSetModeFillForCal function sets the variable to run mode fill only * for calibration check * @details Inputs: none