mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-15 04:15:44 +03:00
79 lines
2.3 KiB
C
79 lines
2.3 KiB
C
/*
|
|
* This file is part of Cleanflight and Betaflight.
|
|
*
|
|
* Cleanflight and Betaflight are free software. You can redistribute
|
|
* this software and/or modify this software under the terms of the
|
|
* GNU General Public License as published by the Free Software
|
|
* Foundation, either version 3 of the License, or (at your option)
|
|
* any later version.
|
|
*
|
|
* Cleanflight and Betaflight are distributed in the hope that they
|
|
* will be useful, but WITHOUT ANY WARRANTY; without even the implied
|
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
* See the GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this software.
|
|
*
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
#include <ctype.h>
|
|
|
|
#include "platform.h"
|
|
|
|
#ifdef USE_CMS
|
|
#include "cms/cms.h"
|
|
#include "cms/cms_types.h"
|
|
#include "cms/cms_menu_saveexit.h"
|
|
|
|
#include "config/feature.h"
|
|
|
|
#include "config/config.h"
|
|
|
|
static const OSD_Entry cmsx_menuSaveExitEntries[] =
|
|
{
|
|
{ "-- SAVE/EXIT --", OME_Label, NULL, NULL, 0},
|
|
{ "EXIT", OME_OSD_Exit, cmsMenuExit, (void *)CMS_EXIT, 0},
|
|
{ "SAVE&EXIT", OME_OSD_Exit, cmsMenuExit, (void *)CMS_POPUP_SAVE, 0},
|
|
{ "SAVE&REBOOT", OME_OSD_Exit, cmsMenuExit, (void *)CMS_POPUP_SAVEREBOOT, 0},
|
|
{ "BACK", OME_Back, NULL, NULL, 0 },
|
|
{ NULL, OME_END, NULL, NULL, 0 }
|
|
};
|
|
|
|
CMS_Menu cmsx_menuSaveExit = {
|
|
#ifdef CMS_MENU_DEBUG
|
|
.GUARD_text = "MENUSAVE",
|
|
.GUARD_type = OME_MENU,
|
|
#endif
|
|
.onEnter = NULL,
|
|
.onExit = NULL,
|
|
.checkRedirect = NULL,
|
|
.entries = cmsx_menuSaveExitEntries
|
|
};
|
|
|
|
static const OSD_Entry cmsx_menuSaveExitRebootEntries[] =
|
|
{
|
|
{ "-- SAVE/EXIT (REBOOT REQD)", OME_Label, NULL, NULL, 0},
|
|
{ "EXIT&REBOOT", OME_OSD_Exit, cmsMenuExit, (void *)CMS_POPUP_EXITREBOOT, 0},
|
|
{ "SAVE&REBOOT", OME_OSD_Exit, cmsMenuExit, (void *)CMS_POPUP_SAVEREBOOT, 0},
|
|
{ "BACK", OME_Back, NULL, NULL, 0 },
|
|
{ NULL, OME_END, NULL, NULL, 0 }
|
|
};
|
|
|
|
CMS_Menu cmsx_menuSaveExitReboot = {
|
|
#ifdef CMS_MENU_DEBUG
|
|
.GUARD_text = "MENUSAVE",
|
|
.GUARD_type = OME_MENU,
|
|
#endif
|
|
.onEnter = NULL,
|
|
.onExit = NULL,
|
|
.checkRedirect = NULL,
|
|
.entries = cmsx_menuSaveExitRebootEntries
|
|
};
|
|
|
|
|
|
#endif
|