Index: firmware/App/Controllers/ConcentratePumps.c =================================================================== diff -u -rd70d93528b59ef7b09032a3bf4128bee0ff6e297 -ra7bbfb3c51ebfe77de45f3c17127b5abc84e610b --- firmware/App/Controllers/ConcentratePumps.c (.../ConcentratePumps.c) (revision d70d93528b59ef7b09032a3bf4128bee0ff6e297) +++ firmware/App/Controllers/ConcentratePumps.c (.../ConcentratePumps.c) (revision a7bbfb3c51ebfe77de45f3c17127b5abc84e610b) @@ -563,7 +563,7 @@ // Park concentrate pump too if requested #ifndef _RELEASE_ - if ( getSoftwareConfigStatus( SW_CONFIG_DISABLE_CONCENTRATE_PUMPS_PARK ) != SW_CONFIG_ENABLE_VALUE ) + if ( SW_CONFIG_DISABLE_VALUE == getSoftwareConfigStatus( SW_CONFIG_DISABLE_CONCENTRATE_PUMPS_PARK ) ) { if ( HW_CONFIG_BETA == getHardwareConfigStatus() ) { Index: firmware/App/Modes/ModeFill.c =================================================================== diff -u -r4c7ef2a9a07569d02844f58b74c4fbdc96a06999 -ra7bbfb3c51ebfe77de45f3c17127b5abc84e610b --- firmware/App/Modes/ModeFill.c (.../ModeFill.c) (revision 4c7ef2a9a07569d02844f58b74c4fbdc96a06999) +++ firmware/App/Modes/ModeFill.c (.../ModeFill.c) (revision a7bbfb3c51ebfe77de45f3c17127b5abc84e610b) @@ -79,7 +79,7 @@ // 2m long tubing to cap = 19.5 mL (acid line) + 7.92 mL/m * 2 m (tubing to cap) + 20.82 mL (straw) = 56.15 mL // Prime time in seconds = ( 56.15 mL / 48 mL/min ) x 60 second/min + 25 seconds margin time = 95 seconds. -#define PRIME_CONCENTRATE_LINES_TIME_OUT_MS ( 95 * MS_PER_SECOND ) ///< Time required to prime the concentrate lines. +#define PRIME_CONCENTRATE_LINES_TIME_OUT_MS ( 60 * MS_PER_SECOND ) ///< Time required to prime the concentrate lines. #define FLUSH_BUBBLES_PUMP_TIME_OUT_MS ( 2 * MS_PER_SECOND ) ///< RO pump on during flush bubble interval in ms. #define DIALYSATE_TEMPERATURE_TOLERANCE_C 2.0F ///< Dialysate temperature tolerance in degree C. #define DATA_PUBLISH_COUNTER_START_COUNT 63 ///< Data publish counter start count.