Index: firmware/App/Controllers/BalancingChamber.c =================================================================== diff -u -r5422509f9d8db102b62952ba9f5923e832d6b2fa -r9ff57b5ab7490ee5bbc2c51b25f738ee6c569ec1 --- firmware/App/Controllers/BalancingChamber.c (.../BalancingChamber.c) (revision 5422509f9d8db102b62952ba9f5923e832d6b2fa) +++ firmware/App/Controllers/BalancingChamber.c (.../BalancingChamber.c) (revision 9ff57b5ab7490ee5bbc2c51b25f738ee6c569ec1) @@ -433,10 +433,11 @@ } // On dosing completion, transition to next state based on the current switching state - if ( ( ( TRUE == isConcentratePumpDosingCompleted( D11_PUMP ) ) && - ( TRUE == isConcentratePumpDosingCompleted( D10_PUMP ) ) ) || - ( TRUE == getBalChamberSwitchingOnlyStatus() ) ) - { + // TODO : Need an updated FPGA to perform this check. For now commenting this check. +// if ( ( ( TRUE == isConcentratePumpDosingCompleted( D11_PUMP ) ) && +// ( TRUE == isConcentratePumpDosingCompleted( D10_PUMP ) ) ) || +// ( TRUE == getBalChamberSwitchingOnlyStatus() ) ) +// { if ( BAL_CHAMBER_SW_STATE1 == balChamberSWState ) { state = BAL_CHAMBER_STATE1_FILL_END; @@ -445,7 +446,7 @@ { state = BAL_CHAMBER_STATE2_FILL_END; } - } +// } return state; }