Index: firmware/App/Controllers/DryBiCart.c =================================================================== diff -u -r6e6e587b8654dab3c596f6a905f857a3e7cf1e62 -r11c6fba719b5759b7261775fbcf87ad2862c7562 --- firmware/App/Controllers/DryBiCart.c (.../DryBiCart.c) (revision 6e6e587b8654dab3c596f6a905f857a3e7cf1e62) +++ firmware/App/Controllers/DryBiCart.c (.../DryBiCart.c) (revision 11c6fba719b5759b7261775fbcf87ad2862c7562) @@ -52,7 +52,7 @@ // Dry Bicart Fill #define DRY_BICART_FILL_COMPLETE_TIME_MS ( 1 * MS_PER_SECOND ) ///< Wait time to reset the request flag after fill complete -#define DRY_BICART_WCID2_FILL_COMPLETE_PRESSURE_PSI ( 3.0F + WCDI2_PRESSURE_OFFSET_PSI ) ///< Maximum pressure reached to indicate the dry bicart fill being completed for WCID2 +#define DRY_BICART_WCID2_FILL_COMPLETE_PRESSURE_PSI ( 10.0F + WCDI2_PRESSURE_OFFSET_PSI ) ///< Maximum pressure reached to indicate the dry bicart fill being completed for WCID2 #define DRY_BICART_WCID1_FILL_COMPLETE_PRESSURE_PSI ( 10.0F + WCID1_PRESSURE_OFFSET_PSI ) ///< Maximum pressure reached to indicate the dry bicart fill being completed for WCID1. #define GET_FILL_COMPLETE_PRESSURE_PSI (getTestConfigStatus( TEST_CONFIG_DD_ENABLE_WCID_1 ) != TRUE ? \ DRY_BICART_WCID2_FILL_COMPLETE_PRESSURE_PSI : DRY_BICART_WCID1_FILL_COMPLETE_PRESSURE_PSI ) ///< Get fill complete pressure based on the WCID configuration @@ -1298,7 +1298,7 @@ { BICARB_CHAMBER_FILL_EXEC_STATE_T state = BICARB_CARTRIDGE_FILL_WATER_END_STATE; F32 d66Pressure = getFilteredPressure( D66_PRES ); - F32 fillCompletePressure = GET_FILL_COMPLETE_PRESSURE_PSI; + F32 fillCompletePressure = DRY_BICART_FILL_COMPLETE_SUPPLY_PRESSURE_PSI; LVL_STATE_T bicarbChamberLevel = getBicarbChamberLevelStatus(); if ( FALSE == isDryBicartChamberFillWindowOpen() )