Index: firmware/App/Controllers/DGInterface.c =================================================================== diff -u -rf748628de6396c5059b0d85b4c96f6c3d81bd91a -ra8136ea117f098131b636bfe2011c51f556b96db --- firmware/App/Controllers/DGInterface.c (.../DGInterface.c) (revision f748628de6396c5059b0d85b4c96f6c3d81bd91a) +++ firmware/App/Controllers/DGInterface.c (.../DGInterface.c) (revision a8136ea117f098131b636bfe2011c51f556b96db) @@ -460,14 +460,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; } /*********************************************************************//** @@ -501,11 +501,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; } /*********************************************************************//**