Index: firmware/App/Services/Reservoirs.c =================================================================== diff -u -r54f45c387430e440ab4607451fc84dea61f273f1 -r4d7d40a27130dc813d653f044cbb856b1b7d8481 --- firmware/App/Services/Reservoirs.c (.../Reservoirs.c) (revision 54f45c387430e440ab4607451fc84dea61f273f1) +++ firmware/App/Services/Reservoirs.c (.../Reservoirs.c) (revision 4d7d40a27130dc813d653f044cbb856b1b7d8481) @@ -56,9 +56,8 @@ /*********************************************************************//** * @brief * The initReservoirs function initializes the Reservoirs module. - * @details - * Inputs : none - * Outputs : Reservoirs module initialized + * @details Inputs: none + * @details Outputs: Reservoirs module initialized * @return none *************************************************************************/ void initReservoirs( void ) @@ -75,9 +74,8 @@ /*********************************************************************//** * @brief * The execReservoirs function manages periodic tasks for the Reservoirs module. - * @details - * Inputs : none - * Outputs : Reservoir data broadcast on interval + * @details Inputs: none + * @details Outputs: Reservoir data broadcast on interval * @return none *************************************************************************/ void execReservoirs( void ) @@ -97,9 +95,8 @@ * @brief * The setActiveReservoir function sets the given reservoir as active * (meaning HD will be drawing from this reservoir). - * @details - * Inputs : none - * Outputs : Specified reservoir is set as active. + * @details Inputs: none + * @details Outputs: Specified reservoir is set as active. * @param resID ID of reservoir to set as active * @return TRUE if set active reservoir command successful, FALSE if not. *************************************************************************/ @@ -142,9 +139,8 @@ /*********************************************************************//** * @brief * The startFill function handles a fill command from the HD. - * @details - * Inputs : none - * Outputs : move to fill mode + * @details Inputs: none + * @details Outputs: move to fill mode * @param fillToVolMl Target volume (in mL) to fill reservoir to * @return TRUE if fill command successful, FALSE if not. *************************************************************************/ @@ -171,9 +167,8 @@ /*********************************************************************//** * @brief * The stopFill function handles a stop fill command from the HD. - * @details - * Inputs : none - * Outputs : move to standby mode + * @details Inputs: none + * @details Outputs: move to standby mode * @return TRUE if stop fill command successful, FALSE if not. *************************************************************************/ BOOL stopFillCmd( void ) @@ -194,9 +189,8 @@ /*********************************************************************//** * @brief * The startDrain function handles a drain command from the HD. - * @details - * Inputs : none - * Outputs : Start draining in re-circulate mode + * @details Inputs: none + * @details Outputs: Start draining in re-circulate mode * @param drainToVolMl Target volume (in mL) to drain reservoir to * @return TRUE if drain command successful, FALSE if not. *************************************************************************/ @@ -222,9 +216,8 @@ /*********************************************************************//** * @brief * The stopDrain function handles a stop drain command from the HD. - * @details - * Inputs : none - * Outputs : move to standby mode + * @details Inputs: none + * @details Outputs: move to standby mode * @return TRUE if stop drain command successful, FALSE if not. *************************************************************************/ BOOL stopDrainCmd( void ) @@ -246,9 +239,8 @@ * @brief * The startTrimmerHeater function handles a start trimmer heater command * from the HD. - * @details - * Inputs : none - * Outputs : start trimmer heater + * @details Inputs: none + * @details Outputs: start trimmer heater * @return TRUE if stop drain command successful, FALSE if not. *************************************************************************/ BOOL startTrimmerHeaterCmd( void ) @@ -264,9 +256,8 @@ * @brief * The stopTrimmerHeater function handles a stop trimmer heater command * from the HD. - * @details - * Inputs : none - * Outputs : stop trimmer heater + * @details Inputs: none + * @details Outputs: stop trimmer heater * @return TRUE if stop drain command successful, FALSE if not. *************************************************************************/ BOOL stopTrimmerHeaterCmd( void ) @@ -281,9 +272,8 @@ /*********************************************************************//** * @brief * The getActiveReservoir function gets the active reservoir. - * @details - * Inputs : activeReservoir - * Outputs : none + * @details Inputs: activeReservoir + * @details Outputs: none * @return the currently active reservoir. *************************************************************************/ RESERVOIR_ID_T getActiveReservoir( void ) @@ -301,9 +291,8 @@ /*********************************************************************//** * @brief * The getReservoirFillVolumeTargetMl function gets the reservoir fill volume (in mL). - * @details - * Inputs : fillVolumeTargetMl - * Outputs : none + * @details Inputs: fillVolumeTargetMl + * @details Outputs: none * @return the current target reservoir fill volume (in mL). *************************************************************************/ U32 getReservoirFillVolumeTargetMl( void ) @@ -321,9 +310,8 @@ /*********************************************************************//** * @brief * The getReservoirDrainVolumeTargetMl function gets the reservoir drain volume (in mL). - * @details - * Inputs : drainVolumeTargetMl - * Outputs : none + * @details Inputs: drainVolumeTargetMl + * @details Outputs: none * @return the current target reservoir drain volume (in mL). *************************************************************************/ U32 getReservoirDrainVolumeTargetMl( void ) @@ -347,9 +335,8 @@ /*********************************************************************//** * @brief * The testSetDGActiveReservoirOverride function overrides the active reservoir. - * @details - * Inputs : activeReservoir - * Outputs : activeReservoir + * @details Inputs: activeReservoir + * @details Outputs: activeReservoir * @param value override active reservoir ID * @return TRUE if override successful, FALSE if not *************************************************************************/ @@ -370,9 +357,8 @@ /*********************************************************************//** * @brief * The activeReservoir function resets the override of the active reservoir. - * @details - * Inputs : activeReservoir - * Outputs : activeReservoir + * @details Inputs: activeReservoir + * @details Outputs: activeReservoir * @return TRUE if override reset successful, FALSE if not *************************************************************************/ BOOL testResetDGActiveReservoirOverride( void ) @@ -393,9 +379,8 @@ * @brief * The testSetReservoirFillVolumeMlOverride function overrides the target * reservoir fill volume (in mL). - * @details - * Inputs : fillVolumeTargetMl - * Outputs : fillVolumeTargetMl + * @details Inputs: fillVolumeTargetMl + * @details Outputs: fillVolumeTargetMl * @param value override target reservoir fill volume (in mL) * @return TRUE if override successful, FALSE if not *************************************************************************/ @@ -417,9 +402,8 @@ * @brief * The testResetReservoirFillVolumeMlOverride function resets the override of * the target reservoir fill volume. - * @details - * Inputs : fillVolumeTargetMl - * Outputs : fillVolumeTargetMl + * @details Inputs: fillVolumeTargetMl + * @details Outputs: fillVolumeTargetMl * @return TRUE if override reset successful, FALSE if not *************************************************************************/ BOOL testResetReservoirFillVolumeMlOverride( void ) @@ -440,9 +424,8 @@ * @brief * The testSetReservoirDrainVolumeMlOverride function overrides the target * reservoir drain volume (in mL). - * @details - * Inputs : drainVolumeTargetMl - * Outputs : drainVolumeTargetMl + * @details Inputs: drainVolumeTargetMl + * @details Outputs: drainVolumeTargetMl * @param value override target reservoir drain volume (in mL) * @return TRUE if override successful, FALSE if not *************************************************************************/ @@ -464,9 +447,8 @@ * @brief * The testResetReservoirDrainVolumeMlOverride function resets the override of * the target reservoir drain volume. - * @details - * Inputs : drainVolumeTargetMl - * Outputs : drainVolumeTargetMl + * @details Inputs: drainVolumeTargetMl + * @details Outputs: drainVolumeTargetMl * @return TRUE if override reset successful, FALSE if not *************************************************************************/ BOOL testResetReservoirDrainVolumeMlOverride( void )