/*********************************************************************** * * Copyright Diality, Inc. 2019-2020. All Rights Reserved. * 181 Technology, Ste. 150 * Irvine, CA 92618 * * Project Denali * * @file Buttons.h * * @brief Buttons header file. * * @date 20-Sep-2019 * *************************************************************************/ #ifndef __BUTTONS_H__ #define __BUTTONS_H__ #include "Common.h" // ********** public definitions ********** typedef enum Buttons { BUTTON_OFF = 0, // Off button BUTTON_STOP, // Stop button NUM_OF_BUTTONS } BUTTON_T; // ********** public function prototypes ********** void initButtons( void ); void execButtons( void ); BOOL isStopButtonPressed( void ); BOOL isButtonPressedRaw( BUTTON_T button ); void userConfirmOffButton( void ); #endif