Index: firmware/App/Controllers/DGInterface.c =================================================================== diff -u -r76754fa90b487632b80a0695618133347b8a3e75 -r19a8bf98a7154e24c35da25225d4b55bf70ddd09 --- firmware/App/Controllers/DGInterface.c (.../DGInterface.c) (revision 76754fa90b487632b80a0695618133347b8a3e75) +++ firmware/App/Controllers/DGInterface.c (.../DGInterface.c) (revision 19a8bf98a7154e24c35da25225d4b55bf70ddd09) @@ -8,7 +8,7 @@ * @file DGInterface.c * * @author (last) Dara Navaei -* @date (last) 04-Jan-2022 +* @date (last) 03-Apr-2022 * * @author (original) Sean * @date (original) 08-Apr-2020 @@ -41,10 +41,10 @@ #define DIALYSATE_TEMP_PERSISTENCE_PERIOD ( 3 * MS_PER_SECOND ) ///< Persistence period for dialysate temperature alarm. -#define DIALYSATE_TEMP_RECOVERY_TOLERANCE_C 2.0 ///< Dialysate temperature recovery tolerance in degree C. -#define DIALYSATE_TEMP_TOLERANCE_C 4.0 ///< Dialysate temperature tolerance in degree C. -#define DIALYSATE_TEMP_HIGH_LIMIT_C 42.0 ///< Dialysate high temperature limit in degree C. -#define DIALYSATE_TEMP_LOW_LIMIT_C 33.0 ///< Dialysate low temperature limit in degree C. +#define DIALYSATE_TEMP_RECOVERY_TOLERANCE_C 2.0F ///< Dialysate temperature recovery tolerance in degree C. +#define DIALYSATE_TEMP_TOLERANCE_C 4.0F ///< Dialysate temperature tolerance in degree C. +#define DIALYSATE_TEMP_HIGH_LIMIT_C 42.0F ///< Dialysate high temperature limit in degree C. +#define DIALYSATE_TEMP_LOW_LIMIT_C 33.0F ///< Dialysate low temperature limit in degree C. // ********** private data **********