mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-06 14:29:28 +00:00
abcb1dec46
By using `BOOT_CFG_AUTOBOOT_EN` in `boot_cfg` and `EXTRA_CFG_NYX_UMS` in `extra_cfg` you can launch UMS from boot. The `ums` variable must be populated with one of the following: ``` NYX_UMS_SD_CARD 0 NYX_UMS_EMMC_BOOT0 1 NYX_UMS_EMMC_BOOT1 2 NYX_UMS_EMMC_GPP 3 NYX_UMS_EMUMMC_BOOT0 4 NYX_UMS_EMUMMC_BOOT1 5 NYX_UMS_EMUMMC_GPP 6 ```
31 lines
942 B
C
31 lines
942 B
C
/*
|
|
* Copyright (c) 2018-2019 CTCaer
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2, as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope it 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 program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef _GUI_TOOLS_H_
|
|
#define _GUI_TOOLS_H_
|
|
|
|
#include "../libs/lvgl/lvgl.h"
|
|
|
|
lv_obj_t *ums_mbox;
|
|
|
|
void create_tab_tools(lv_theme_t *th, lv_obj_t *parent);
|
|
void nyx_run_ums(void *param);
|
|
void sept_run_dump(void *param);
|
|
bool get_autorcm_status(bool change);
|
|
lv_res_t action_ums_sd(lv_obj_t *btn);
|
|
|
|
#endif
|