Index: firmware/App/Controllers/Voltages.c =================================================================== diff -u -r158b4394cb66d4585bbcef39471193a7396709c6 -r68e17de06159475b85209fe92aa1f9289e858de3 --- firmware/App/Controllers/Voltages.c (.../Voltages.c) (revision 158b4394cb66d4585bbcef39471193a7396709c6) +++ firmware/App/Controllers/Voltages.c (.../Voltages.c) (revision 68e17de06159475b85209fe92aa1f9289e858de3) @@ -40,15 +40,6 @@ NUM_OF_VOLTAGES_STATES ///< Number of voltage monitor states. } VOLTAGES_STATE_T; -/// Defined states for the voltage monitor self-test state machine. -typedef enum Voltages_Self_Test_States -{ - VOLTAGES_SELF_TEST_STATE_START = 0, ///< Self test start state. - VOLTAGES_TEST_STATE_IN_PROGRESS, ///< Self test in progress state. - VOLTAGES_TEST_STATE_COMPLETE, ///< Self test completed state. - NUM_OF_VOLTAGES_SELF_TEST_STATES ///< Number of voltage monitor self-test states. -} VOLTAGES_SELF_TEST_STATE_T; - /// Maximum voltage/current level for each monitored signal. static const F32 MAX_VOLTAGES[ NUM_OF_MONITORED_LINES ] = { @@ -309,22 +300,7 @@ voltagesDataPublicationTimerCounter = 0; } } - -/*********************************************************************//** - * @brief - * The execVoltagesTest function executes the voltage monitor self-test. - * @details Inputs: none - * @details Outputs: none - * @return the result of the voltage monitor self-test. - *************************************************************************/ -SELF_TEST_STATUS_T execVoltagesTest( void ) -{ - SELF_TEST_STATUS_T result = SELF_TEST_STATUS_PASSED; - // TODO - implement - - return result; -} /************************************************************************* * TEST SUPPORT FUNCTIONS Index: firmware/App/Controllers/Voltages.h =================================================================== diff -u -r850f74b97895fd0f6c4728541ac2582f7b5c5a0b -r68e17de06159475b85209fe92aa1f9289e858de3 --- firmware/App/Controllers/Voltages.h (.../Voltages.h) (revision 850f74b97895fd0f6c4728541ac2582f7b5c5a0b) +++ firmware/App/Controllers/Voltages.h (.../Voltages.h) (revision 68e17de06159475b85209fe92aa1f9289e858de3) @@ -63,8 +63,6 @@ void initVoltagesMonitor( void ); void execVoltagesMonitor( void ); -SELF_TEST_STATUS_T execVoltagesTest( void ); - F32 getMonitoredLineLevel( MONITORED_VOLTAGES_T signal ); BOOL testSetVoltagesDataPublishIntervalOverride( U32 value );