Index: firmware/App/Controllers/DialysatePumps.c =================================================================== diff -u -rff0edadf0c6f161a0a092ddaf94d1940d64f7d5e -rd9839070a9c1d8dbc58cbba991b0b6845ee42d59 --- firmware/App/Controllers/DialysatePumps.c (.../DialysatePumps.c) (revision ff0edadf0c6f161a0a092ddaf94d1940d64f7d5e) +++ firmware/App/Controllers/DialysatePumps.c (.../DialysatePumps.c) (revision d9839070a9c1d8dbc58cbba991b0b6845ee42d59) @@ -22,6 +22,7 @@ #include "FpgaDD.h" #include "MessageSupport.h" #include "Messaging.h" +#include "ModeStandby.h" //#include "NVMgmt.h" #include "OperationModes.h" #include "PersistentAlarm.h" @@ -1142,9 +1143,15 @@ *************************************************************************/ BOOL testDialysatePumpTargetSpeedOverride( MESSAGE_T *message ) { + +//TODO: This is a fix just for our testing to simulate going to heat mode from standby, need to revert back +#if 0 BOOL result = f32ArrayOverride( message, &pumpTargetSpeed[ 0 ], NUM_OF_DIALYSATE_PUMPS - 1 ); +#else + pendingStartDDHeatDisinfectRequest = TRUE; +#endif - return result; + return pendingStartDDHeatDisinfectRequest; } /*********************************************************************//**