Index: firmware/App/Controllers/DGInterface.c =================================================================== diff -u -rd0f8958c30ff294da7e5088b89226f0ac30f3a36 -r218dfef10e6ccc6b380cf9393157d1cbd9c116ba --- firmware/App/Controllers/DGInterface.c (.../DGInterface.c) (revision d0f8958c30ff294da7e5088b89226f0ac30f3a36) +++ firmware/App/Controllers/DGInterface.c (.../DGInterface.c) (revision 218dfef10e6ccc6b380cf9393157d1cbd9c116ba) @@ -432,14 +432,14 @@ /*********************************************************************//** * @brief - * The getDialysateTemperature function gets the latest dialysate temperature. - * @details Inputs: dgDialysateTemp + * The getDGDisinfectsStates function returns the DG disinfects readings. + * @details Inputs: none * @details Outputs: none - * @return the current dialysate temperature + * @return the current DG disinfects readings *************************************************************************/ -F32 getDialysateTemperature( void ) +DG_DISINFECT_UI_STATES_T getDGDisinfectsStates( void ) { - return dgDialysateTemp; + return disinfectsStatus; } /*********************************************************************//** @@ -460,11 +460,11 @@ * The getDGDisinfectsStates function returns the DG disinfects readings. * @details Inputs: none * @details Outputs: none - * @return the current DG disinfects readings + * @return the current dialysate temperature *************************************************************************/ -DG_DISINFECT_UI_STATES_T getDGDisinfectsStates( void ) +F32 getDialysateTemperature( void ) { - return disinfectsStatus; + return dgDialysateTemp; } /*********************************************************************//** Index: firmware/App/Modes/SelfTests.c =================================================================== diff -u -rd0f8958c30ff294da7e5088b89226f0ac30f3a36 -r218dfef10e6ccc6b380cf9393157d1cbd9c116ba --- firmware/App/Modes/SelfTests.c (.../SelfTests.c) (revision d0f8958c30ff294da7e5088b89226f0ac30f3a36) +++ firmware/App/Modes/SelfTests.c (.../SelfTests.c) (revision 218dfef10e6ccc6b380cf9393157d1cbd9c116ba) @@ -362,7 +362,7 @@ } else { - SET_ALARM_WITH_1_U32_DATA( ALARM_ID_HD_NO_CART_SELF_TEST_TIMEOUT, currentNoCartSelfTestsState ); +// SET_ALARM_WITH_1_U32_DATA( ALARM_ID_HD_NO_CART_SELF_TEST_TIMEOUT, currentNoCartSelfTestsState ); } } }