/************************************************************************** * * Copyright (c) 2019-2019 Diality Inc. - All Rights Reserved. * * THIS CODE MAY NOT BE COPIED OR REPRODUCED IN ANY FORM, IN PART OR IN * WHOLE, WITHOUT THE EXPLICIT PERMISSION OF THE COPYRIGHT OWNER. * * @file SystemCommMessages.h * * @date 10-Oct-2019 * @author S. Nash * * @brief header file for System Communication message definitions and functions. * **************************************************************************/ #ifndef __SYSTEM_COMM_MESSAGES_H__ #define __SYSTEM_COMM_MESSAGES_H__ #include "Common.h" #include "MsgQueues.h" // ********** public definitions ********** typedef enum Msg_IDs { MSG_ID_UNUSED = 0, MSG_ID_OFF_BUTTON_PRESS, NUM_OF_MSG_IDS } MSG_ID_T; // ********** public function prototypes ********** // MSG_ID_OFF_BUTTON_PRESS BOOL sendOffButtonMsgToUI( void ); void handleOffButtonConfirmMsgFromUI( MESSAGE_T *message ); #endif