Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -r425de1be48f86645589caea4ac832c58655f75b2 -r49ac2ce8748ea2e0c6ff0124dac97a81deb4aa9d --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 425de1be48f86645589caea4ac832c58655f75b2) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 49ac2ce8748ea2e0c6ff0124dac97a81deb4aa9d) @@ -570,3 +570,27 @@ // respond to request sendTestAckResponseMsg( (MSG_ID_T)message->hdr.msgID, result ); } + +/************************************************************************* + * @brief + * The handleTestValveStateOverrideRequest function handles a request to \n + * override the state value read from the given valve. + * @details + * Inputs : none + * Outputs : message handled + * @param message : a pointer to the message to handle + * @return none + *************************************************************************/ +DATA_ARRAY_OVERRIDE_HANDLER_FUNC_U32( BOOL, handleTestValveStateOverrideRequest, testSetValveStateOverride, testResetValveStateOverride ) + +/************************************************************************* + * @brief + * The handleTestValvesStatesPublishIntervalOverrideRequest function handles \n + * a request to override the publish interval of valves states from the given valve. + * @details + * Inputs : none + * Outputs : message handled + * @param message : a pointer to the message to handle + * @return none + *************************************************************************/ +DATA_ARRAY_OVERRIDE_HANDLER_FUNC_U32( BOOL, handleTestValvesStatesPublishIntervalOverrideRequest, testSetValvesStatesPublishIntervalOverride, testResetValvesStatesPublishIntervalOverride )