Index: firmware/App/Services/Reservoirs.c =================================================================== diff -u -rbd1f452097afa4da0f60f64ecc6b6aab0a341d8c -rd371983d84daf213db3e39d21cf30c13161ce062 --- firmware/App/Services/Reservoirs.c (.../Reservoirs.c) (revision bd1f452097afa4da0f60f64ecc6b6aab0a341d8c) +++ firmware/App/Services/Reservoirs.c (.../Reservoirs.c) (revision d371983d84daf213db3e39d21cf30c13161ce062) @@ -7,8 +7,8 @@ * * @file Reservoirs.c * -* @author (last) Sean Nash -* @date (last) 24-Aug-2023 +* @author (last) James Walter Taylor +* @date (last) 01-Sep-2023 * * @author (original) Sean * @date (original) 18-Mar-2020 @@ -101,7 +101,7 @@ static HEATERS_TEMPERATURE_CALC_DATA_T heatersTempCalc; ///< Heaters temperature calculations data structure. static U32 dataPublishCounter; ///< used to schedule reservoir data publication to CAN bus. -static OVERRIDE_U32_T activeReservoir = { 0, 0, 0, 0 }; ///< The active reservoir that the DG is filling/draining/etc. +static OVERRIDE_U32_T activeReservoir = { 0, 0, 0, 0 }; ///< The active reservoir that serves the HD dialysate need. static OVERRIDE_U32_T fillVolumeTargetMl = { 0, 0, 0, 0 }; ///< The target reservoir fill volume (in mL). static OVERRIDE_U32_T drainVolumeTargetMl = { 0, 0, 0, 0 }; ///< The target reservoir drain volume (in mL). static OVERRIDE_U32_T reservoirDataPublishInterval = { RESERVOIR_DATA_PUB_INTERVAL, @@ -1224,7 +1224,7 @@ * @details Outputs: acidConcentrateCalRecord, bicarbConcentrateCalRecord * @param acid which is the acid dialysate mixing ratio * @param bicarb which is the bicarb dialysate mixing ratio - * @return TRUE if tare successful, FALSE if not + * @return TRUE if set successful, FALSE if not *************************************************************************/ BOOL testSetDialysateMixingRatios( F32 acid, F32 bicarb ) { @@ -1246,7 +1246,7 @@ * reservoir data publish interval. * @details Inputs: reservoirDataPublishInterval * @details Outputs: reservoirDataPublishInterval - * @param: value override reservoir data publish interval with (in ms) + * @param value override reservoir data publish interval with (in ms) * @return TRUE if override successful, FALSE if not *************************************************************************/ BOOL testSetReservoirDataPublishIntervalOverride( U32 value )