Index: firmware/App/Controllers/DGInterface.c =================================================================== diff -u -r6623684ddacf5beebd15bce8a1dbd06a442fb38e -r403a5ac7320f57617ef6fdaf71756ca139cd3b02 --- firmware/App/Controllers/DGInterface.c (.../DGInterface.c) (revision 6623684ddacf5beebd15bce8a1dbd06a442fb38e) +++ firmware/App/Controllers/DGInterface.c (.../DGInterface.c) (revision 403a5ac7320f57617ef6fdaf71756ca139cd3b02) @@ -329,26 +329,26 @@ /*********************************************************************//** * @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; } /*********************************************************************//** * @brief - * The getDGDisinfectsStates function returns the DG disinfects readings. - * @details Inputs: none + * The getDialysateTemperature function gets the latest dialysate temperature. + * @details Inputs: dgDialysateTemp * @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; } /*********************************************************************//**