Index: firmware/App/Controllers/BloodFlow.c =================================================================== diff -u -rfbe7e9a870c7ad78d3bd26f0f5cbb0277c733ac3 -r05a0f2e906537510ce6255e9731b334b37d76697 --- firmware/App/Controllers/BloodFlow.c (.../BloodFlow.c) (revision fbe7e9a870c7ad78d3bd26f0f5cbb0277c733ac3) +++ firmware/App/Controllers/BloodFlow.c (.../BloodFlow.c) (revision 05a0f2e906537510ce6255e9731b334b37d76697) @@ -249,7 +249,7 @@ resetBloodPumpRPMMovingAverage(); // Reset pump rotor count - resetBloodPumpRotorCount(); + //resetBloodPumpRotorCount(); // Initialize blood flow PI controller initializePIController( PI_CONTROLLER_ID_BLOOD_FLOW, 0.0F, @@ -465,24 +465,24 @@ return result; } -/*********************************************************************//** - * @brief - * The resetBloodPumpRotorCount function resets the blood pump rotor counter - * that is a proxy for cartridge wear. Call this function after a new cartridge - * has been installed. - * @details \b Inputs: none - * @details \b Outputs: bloodPumpRotorCounter - * @return none - *************************************************************************/ -void resetBloodPumpRotorCount( void ) -{ - bloodPumpRotorCounter.data = 0; - +///*********************************************************************//** +// * @brief +// * The resetBloodPumpRotorCount function resets the blood pump rotor counter +// * that is a proxy for cartridge wear. Call this function after a new cartridge +// * has been installed. +// * @details \b Inputs: none +// * @details \b Outputs: bloodPumpRotorCounter +// * @return none +// *************************************************************************/ +//void resetBloodPumpRotorCount( void ) +//{ +// bloodPumpRotorCounter.data = 0; +// // if ( TRUE == getTestConfigStatus( TEST_CONFIG_USE_WORN_CARTRIDGE ) ) - { - bloodPumpRotorCounter.data = BP_MAX_ROTOR_COUNT_FOR_WEAR; - } -} +// { +// bloodPumpRotorCounter.data = BP_MAX_ROTOR_COUNT_FOR_WEAR; +// } +//} /*********************************************************************//** * @brief