Index: firmware/App/Services/SystemCommMessages.c =================================================================== diff -u -re5d24f913e4f29d61c813cd1446ac22a368815f2 -r41b864cbe954522399b3264d50109a3ae0786dfc --- firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision e5d24f913e4f29d61c813cd1446ac22a368815f2) +++ firmware/App/Services/SystemCommMessages.c (.../SystemCommMessages.c) (revision 41b864cbe954522399b3264d50109a3ae0786dfc) @@ -7700,6 +7700,15 @@ sendTestAckResponseMsg( (MSG_ID_T)message->hdr.msgID, result ); } +/*********************************************************************//** +* @brief +* The handleAirPumpIntervalOverrideRequest function handles a request to override +* the air pump's broadcast interval. +* @details Inputs: none +* @details Outputs: message handled +* @param message a pointer to the message to handle +* @return none +*************************************************************************/ void handleAirPumpIntervalOverrideRequest( MESSAGE_T *message ) { TEST_OVERRIDE_PAYLOAD_T payload; @@ -7723,6 +7732,15 @@ sendTestAckResponseMsg( (MSG_ID_T)message->hdr.msgID, result ); } +/*********************************************************************//** +* @brief +* The handleAirPumpSetState function handles a request to set the +* air pump state. +* @details Inputs: none +* @details Outputs: message handled +* @param message a pointer to the message to handle +* @return none +*************************************************************************/ void handleAirPumpSetState( MESSAGE_T *message ) { BOOL result = FALSE; @@ -7741,5 +7759,4 @@ sendTestAckResponseMsg( (MSG_ID_T)message->hdr.msgID, result ); } - /**@}*/