Index: firmware/App/Controllers/ROPump.c =================================================================== diff -u -r54f45c387430e440ab4607451fc84dea61f273f1 -r748fbe2e4347126645d229f9dfed45de55526ef7 --- firmware/App/Controllers/ROPump.c (.../ROPump.c) (revision 54f45c387430e440ab4607451fc84dea61f273f1) +++ firmware/App/Controllers/ROPump.c (.../ROPump.c) (revision 748fbe2e4347126645d229f9dfed45de55526ef7) @@ -70,13 +70,13 @@ NUM_OF_RO_PUMP_STATES ///< Number of RO pump states } RO_PUMP_STATE_T; -/// Enumeration of RO pump self test states. +/// Enumeration of RO pump self-test states. typedef enum ROPump_Self_Test_States { - RO_PUMP_SELF_TEST_STATE_START = 0, ///< RO pump self test start state - RO_PUMP_TEST_STATE_IN_PROGRESS, ///< RO pump self tests in progress state - RO_PUMP_TEST_STATE_COMPLETE, ///< RO pump self tests completed state - NUM_OF_RO_PUMP_SELF_TEST_STATES ///< Number of RO pump self test states + RO_PUMP_SELF_TEST_STATE_START = 0, ///< RO pump self-test start state + RO_PUMP_TEST_STATE_IN_PROGRESS, ///< RO pump self-tests in progress state + RO_PUMP_TEST_STATE_COMPLETE, ///< RO pump self-tests completed state + NUM_OF_RO_PUMP_SELF_TEST_STATES ///< Number of RO pump self-test states } RO_PUMP_SELF_TEST_STATE_T; // TODO - test code - remove later @@ -106,8 +106,8 @@ static U32 roControlTimerCounter = 0; ///< Timer counter for perform control on RO pump. -static RO_PUMP_SELF_TEST_STATE_T roPumpSelfTestState = RO_PUMP_SELF_TEST_STATE_START; ///< Current RO pump self test state. -static U32 roPumpSelfTestTimerCount = 0; ///< Timer counter for RO pump self test. +static RO_PUMP_SELF_TEST_STATE_T roPumpSelfTestState = RO_PUMP_SELF_TEST_STATE_START; ///< Current RO pump self-test state. +static U32 roPumpSelfTestTimerCount = 0; ///< Timer counter for RO pump self-test. // ********** private function prototypes ********** @@ -488,17 +488,17 @@ /*********************************************************************//** * @brief - * The execROPumpTest function executes the state machine for the ROPump self test. + * The execROPumpTest function executes the state machine for the ROPump self-test. * @details * Inputs : none * Outputs : none - * @return the current state of the ROPump self test. + * @return the current state of the ROPump self-test. *************************************************************************/ SELF_TEST_STATUS_T execROPumpTest( void ) { SELF_TEST_STATUS_T result = SELF_TEST_STATUS_FAILED; - // TODO - implement self test(s) + // TODO - implement self-test(s) return result; }