Index: firmware/App/Controllers/Buttons.c =================================================================== diff -u -r9b262ba08e3180f121c3cf19d8d25e565183f87d -r94895e32fe18e78b98fe3bb7786838cf00afdbfa --- firmware/App/Controllers/Buttons.c (.../Buttons.c) (revision 9b262ba08e3180f121c3cf19d8d25e565183f87d) +++ firmware/App/Controllers/Buttons.c (.../Buttons.c) (revision 94895e32fe18e78b98fe3bb7786838cf00afdbfa) @@ -346,14 +346,7 @@ if ( getOffButtonState() == BUTTON_STATE_PRESSED ) { // if off request in a valid mode, send to UI for user confirmation - if ( TRUE == isCurrentOpModeOkToTurnOff() ) - { - // send off button to UI for user confirmation - sendOffButtonMsgToUI( OFF_BUTTON_CMD_PROMPT_USER_TO_CONFIRM ); - offRequestAwaitingUserConfirmation = TRUE; - offRequestPendingTimer = 0; - userConfirmOffButton( OFF_BUTTON_RSP_USER_REQUESTS_POWER_OFF ); - } + userConfirmOffButton( OFF_BUTTON_RSP_USER_REQUESTS_POWER_OFF ); } prevOffButtonState = getOffButtonState(); }