|
@@ -27,28 +27,31 @@ static void esp_flasher_scene_browse_callback(void* context, uint32_t index) {
|
|
|
switch(index) {
|
|
switch(index) {
|
|
|
case SubmenuIndexS3Mode:
|
|
case SubmenuIndexS3Mode:
|
|
|
// toggle S3 mode
|
|
// toggle S3 mode
|
|
|
- app->selected_flash_options[SelectedFlashS3Mode] = !app->selected_flash_options[SelectedFlashS3Mode];
|
|
|
|
|
|
|
+ app->selected_flash_options[SelectedFlashS3Mode] =
|
|
|
|
|
+ !app->selected_flash_options[SelectedFlashS3Mode];
|
|
|
view_dispatcher_send_custom_event(app->view_dispatcher, EspFlasherEventRefreshSubmenu);
|
|
view_dispatcher_send_custom_event(app->view_dispatcher, EspFlasherEventRefreshSubmenu);
|
|
|
break;
|
|
break;
|
|
|
case SubmenuIndexBoot:
|
|
case SubmenuIndexBoot:
|
|
|
- app->selected_flash_options[SelectedFlashBoot] = !app->selected_flash_options[SelectedFlashBoot];
|
|
|
|
|
- if (app->selected_flash_options[SelectedFlashBoot]) {
|
|
|
|
|
|
|
+ app->selected_flash_options[SelectedFlashBoot] =
|
|
|
|
|
+ !app->selected_flash_options[SelectedFlashBoot];
|
|
|
|
|
+ if(app->selected_flash_options[SelectedFlashBoot]) {
|
|
|
if(dialog_file_browser_show(
|
|
if(dialog_file_browser_show(
|
|
|
- app->dialogs, selected_filepath, predefined_filepath, &browser_options)) {
|
|
|
|
|
|
|
+ app->dialogs, selected_filepath, predefined_filepath, &browser_options)) {
|
|
|
strncpy(
|
|
strncpy(
|
|
|
app->bin_file_path_boot,
|
|
app->bin_file_path_boot,
|
|
|
furi_string_get_cstr(selected_filepath),
|
|
furi_string_get_cstr(selected_filepath),
|
|
|
sizeof(app->bin_file_path_boot));
|
|
sizeof(app->bin_file_path_boot));
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
- if (app->bin_file_path_boot[0] == '\0') {
|
|
|
|
|
|
|
+ if(app->bin_file_path_boot[0] == '\0') {
|
|
|
// if user didn't select a file, leave unselected
|
|
// if user didn't select a file, leave unselected
|
|
|
app->selected_flash_options[SelectedFlashBoot] = false;
|
|
app->selected_flash_options[SelectedFlashBoot] = false;
|
|
|
}
|
|
}
|
|
|
view_dispatcher_send_custom_event(app->view_dispatcher, EspFlasherEventRefreshSubmenu);
|
|
view_dispatcher_send_custom_event(app->view_dispatcher, EspFlasherEventRefreshSubmenu);
|
|
|
break;
|
|
break;
|
|
|
case SubmenuIndexPart:
|
|
case SubmenuIndexPart:
|
|
|
- app->selected_flash_options[SelectedFlashPart] = !app->selected_flash_options[SelectedFlashPart];
|
|
|
|
|
|
|
+ app->selected_flash_options[SelectedFlashPart] =
|
|
|
|
|
+ !app->selected_flash_options[SelectedFlashPart];
|
|
|
if(dialog_file_browser_show(
|
|
if(dialog_file_browser_show(
|
|
|
app->dialogs, selected_filepath, predefined_filepath, &browser_options)) {
|
|
app->dialogs, selected_filepath, predefined_filepath, &browser_options)) {
|
|
|
strncpy(
|
|
strncpy(
|
|
@@ -56,14 +59,15 @@ static void esp_flasher_scene_browse_callback(void* context, uint32_t index) {
|
|
|
furi_string_get_cstr(selected_filepath),
|
|
furi_string_get_cstr(selected_filepath),
|
|
|
sizeof(app->bin_file_path_part));
|
|
sizeof(app->bin_file_path_part));
|
|
|
}
|
|
}
|
|
|
- if (app->bin_file_path_part[0] == '\0') {
|
|
|
|
|
|
|
+ if(app->bin_file_path_part[0] == '\0') {
|
|
|
// if user didn't select a file, leave unselected
|
|
// if user didn't select a file, leave unselected
|
|
|
app->selected_flash_options[SelectedFlashPart] = false;
|
|
app->selected_flash_options[SelectedFlashPart] = false;
|
|
|
}
|
|
}
|
|
|
view_dispatcher_send_custom_event(app->view_dispatcher, EspFlasherEventRefreshSubmenu);
|
|
view_dispatcher_send_custom_event(app->view_dispatcher, EspFlasherEventRefreshSubmenu);
|
|
|
break;
|
|
break;
|
|
|
case SubmenuIndexNvs:
|
|
case SubmenuIndexNvs:
|
|
|
- app->selected_flash_options[SelectedFlashNvs] = !app->selected_flash_options[SelectedFlashNvs];
|
|
|
|
|
|
|
+ app->selected_flash_options[SelectedFlashNvs] =
|
|
|
|
|
+ !app->selected_flash_options[SelectedFlashNvs];
|
|
|
if(dialog_file_browser_show(
|
|
if(dialog_file_browser_show(
|
|
|
app->dialogs, selected_filepath, predefined_filepath, &browser_options)) {
|
|
app->dialogs, selected_filepath, predefined_filepath, &browser_options)) {
|
|
|
strncpy(
|
|
strncpy(
|
|
@@ -71,14 +75,15 @@ static void esp_flasher_scene_browse_callback(void* context, uint32_t index) {
|
|
|
furi_string_get_cstr(selected_filepath),
|
|
furi_string_get_cstr(selected_filepath),
|
|
|
sizeof(app->bin_file_path_nvs));
|
|
sizeof(app->bin_file_path_nvs));
|
|
|
}
|
|
}
|
|
|
- if (app->bin_file_path_nvs[0] == '\0') {
|
|
|
|
|
|
|
+ if(app->bin_file_path_nvs[0] == '\0') {
|
|
|
// if user didn't select a file, leave unselected
|
|
// if user didn't select a file, leave unselected
|
|
|
app->selected_flash_options[SelectedFlashNvs] = false;
|
|
app->selected_flash_options[SelectedFlashNvs] = false;
|
|
|
}
|
|
}
|
|
|
view_dispatcher_send_custom_event(app->view_dispatcher, EspFlasherEventRefreshSubmenu);
|
|
view_dispatcher_send_custom_event(app->view_dispatcher, EspFlasherEventRefreshSubmenu);
|
|
|
break;
|
|
break;
|
|
|
case SubmenuIndexBootApp0:
|
|
case SubmenuIndexBootApp0:
|
|
|
- app->selected_flash_options[SelectedFlashBootApp0] = !app->selected_flash_options[SelectedFlashBootApp0];
|
|
|
|
|
|
|
+ app->selected_flash_options[SelectedFlashBootApp0] =
|
|
|
|
|
+ !app->selected_flash_options[SelectedFlashBootApp0];
|
|
|
if(dialog_file_browser_show(
|
|
if(dialog_file_browser_show(
|
|
|
app->dialogs, selected_filepath, predefined_filepath, &browser_options)) {
|
|
app->dialogs, selected_filepath, predefined_filepath, &browser_options)) {
|
|
|
strncpy(
|
|
strncpy(
|
|
@@ -86,14 +91,15 @@ static void esp_flasher_scene_browse_callback(void* context, uint32_t index) {
|
|
|
furi_string_get_cstr(selected_filepath),
|
|
furi_string_get_cstr(selected_filepath),
|
|
|
sizeof(app->bin_file_path_boot_app0));
|
|
sizeof(app->bin_file_path_boot_app0));
|
|
|
}
|
|
}
|
|
|
- if (app->bin_file_path_boot_app0[0] == '\0') {
|
|
|
|
|
|
|
+ if(app->bin_file_path_boot_app0[0] == '\0') {
|
|
|
// if user didn't select a file, leave unselected
|
|
// if user didn't select a file, leave unselected
|
|
|
app->selected_flash_options[SelectedFlashBootApp0] = false;
|
|
app->selected_flash_options[SelectedFlashBootApp0] = false;
|
|
|
}
|
|
}
|
|
|
view_dispatcher_send_custom_event(app->view_dispatcher, EspFlasherEventRefreshSubmenu);
|
|
view_dispatcher_send_custom_event(app->view_dispatcher, EspFlasherEventRefreshSubmenu);
|
|
|
break;
|
|
break;
|
|
|
case SubmenuIndexApp:
|
|
case SubmenuIndexApp:
|
|
|
- app->selected_flash_options[SelectedFlashApp] = !app->selected_flash_options[SelectedFlashApp];
|
|
|
|
|
|
|
+ app->selected_flash_options[SelectedFlashApp] =
|
|
|
|
|
+ !app->selected_flash_options[SelectedFlashApp];
|
|
|
if(dialog_file_browser_show(
|
|
if(dialog_file_browser_show(
|
|
|
app->dialogs, selected_filepath, predefined_filepath, &browser_options)) {
|
|
app->dialogs, selected_filepath, predefined_filepath, &browser_options)) {
|
|
|
strncpy(
|
|
strncpy(
|
|
@@ -101,14 +107,15 @@ static void esp_flasher_scene_browse_callback(void* context, uint32_t index) {
|
|
|
furi_string_get_cstr(selected_filepath),
|
|
furi_string_get_cstr(selected_filepath),
|
|
|
sizeof(app->bin_file_path_app));
|
|
sizeof(app->bin_file_path_app));
|
|
|
}
|
|
}
|
|
|
- if (app->bin_file_path_app[0] == '\0') {
|
|
|
|
|
|
|
+ if(app->bin_file_path_app[0] == '\0') {
|
|
|
// if user didn't select a file, leave unselected
|
|
// if user didn't select a file, leave unselected
|
|
|
app->selected_flash_options[SelectedFlashApp] = false;
|
|
app->selected_flash_options[SelectedFlashApp] = false;
|
|
|
}
|
|
}
|
|
|
view_dispatcher_send_custom_event(app->view_dispatcher, EspFlasherEventRefreshSubmenu);
|
|
view_dispatcher_send_custom_event(app->view_dispatcher, EspFlasherEventRefreshSubmenu);
|
|
|
break;
|
|
break;
|
|
|
case SubmenuIndexCustom:
|
|
case SubmenuIndexCustom:
|
|
|
- app->selected_flash_options[SelectedFlashCustom] = !app->selected_flash_options[SelectedFlashCustom];
|
|
|
|
|
|
|
+ app->selected_flash_options[SelectedFlashCustom] =
|
|
|
|
|
+ !app->selected_flash_options[SelectedFlashCustom];
|
|
|
if(dialog_file_browser_show(
|
|
if(dialog_file_browser_show(
|
|
|
app->dialogs, selected_filepath, predefined_filepath, &browser_options)) {
|
|
app->dialogs, selected_filepath, predefined_filepath, &browser_options)) {
|
|
|
strncpy(
|
|
strncpy(
|
|
@@ -116,7 +123,7 @@ static void esp_flasher_scene_browse_callback(void* context, uint32_t index) {
|
|
|
furi_string_get_cstr(selected_filepath),
|
|
furi_string_get_cstr(selected_filepath),
|
|
|
sizeof(app->bin_file_path_custom));
|
|
sizeof(app->bin_file_path_custom));
|
|
|
}
|
|
}
|
|
|
- if (app->bin_file_path_custom[0] == '\0') {
|
|
|
|
|
|
|
+ if(app->bin_file_path_custom[0] == '\0') {
|
|
|
// if user didn't select a file, leave unselected
|
|
// if user didn't select a file, leave unselected
|
|
|
app->selected_flash_options[SelectedFlashCustom] = false;
|
|
app->selected_flash_options[SelectedFlashCustom] = false;
|
|
|
}
|
|
}
|
|
@@ -125,12 +132,14 @@ static void esp_flasher_scene_browse_callback(void* context, uint32_t index) {
|
|
|
case SubmenuIndexFlash:
|
|
case SubmenuIndexFlash:
|
|
|
// count how many options are selected
|
|
// count how many options are selected
|
|
|
app->num_selected_flash_options = 0;
|
|
app->num_selected_flash_options = 0;
|
|
|
- for (bool* option = &app->selected_flash_options[SelectedFlashBoot]; option < &app->selected_flash_options[NUM_FLASH_OPTIONS]; ++option) {
|
|
|
|
|
- if (*option) {
|
|
|
|
|
|
|
+ for(bool* option = &app->selected_flash_options[SelectedFlashBoot];
|
|
|
|
|
+ option < &app->selected_flash_options[NUM_FLASH_OPTIONS];
|
|
|
|
|
+ ++option) {
|
|
|
|
|
+ if(*option) {
|
|
|
++app->num_selected_flash_options;
|
|
++app->num_selected_flash_options;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
- if (app->num_selected_flash_options) {
|
|
|
|
|
|
|
+ if(app->num_selected_flash_options) {
|
|
|
// only start next scene if at least one option is selected
|
|
// only start next scene if at least one option is selected
|
|
|
scene_manager_next_scene(app->scene_manager, EspFlasherSceneConsoleOutput);
|
|
scene_manager_next_scene(app->scene_manager, EspFlasherSceneConsoleOutput);
|
|
|
}
|
|
}
|
|
@@ -141,17 +150,17 @@ static void esp_flasher_scene_browse_callback(void* context, uint32_t index) {
|
|
|
furi_string_free(predefined_filepath);
|
|
furi_string_free(predefined_filepath);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-#define STR_SELECT "[x]"
|
|
|
|
|
-#define STR_UNSELECT "[ ]"
|
|
|
|
|
-#define STR_BOOT "Bootloader (" TOSTRING(ESP_ADDR_BOOT) ")"
|
|
|
|
|
-#define STR_BOOT_S3 "Bootloader (" TOSTRING(ESP_ADDR_BOOT_S3) ")"
|
|
|
|
|
-#define STR_PART "Part Table (" TOSTRING(ESP_ADDR_PART) ")"
|
|
|
|
|
-#define STR_NVS "NVS (" TOSTRING(ESP_ADDR_NVS) ")"
|
|
|
|
|
-#define STR_BOOT_APP0 "boot_app0 (" TOSTRING(ESP_ADDR_BOOT_APP0) ")"
|
|
|
|
|
-#define STR_APP "Firmware (" TOSTRING(ESP_ADDR_APP) ")"
|
|
|
|
|
-#define STR_CUSTOM "Custom"
|
|
|
|
|
-#define STR_FLASH_S3 "[>] FLASH (ESP32-S3)"
|
|
|
|
|
-#define STR_FLASH "[>] FLASH"
|
|
|
|
|
|
|
+#define STR_SELECT "[x]"
|
|
|
|
|
+#define STR_UNSELECT "[ ]"
|
|
|
|
|
+#define STR_BOOT "Bootloader (" TOSTRING(ESP_ADDR_BOOT) ")"
|
|
|
|
|
+#define STR_BOOT_S3 "Bootloader (" TOSTRING(ESP_ADDR_BOOT_S3) ")"
|
|
|
|
|
+#define STR_PART "Part Table (" TOSTRING(ESP_ADDR_PART) ")"
|
|
|
|
|
+#define STR_NVS "NVS (" TOSTRING(ESP_ADDR_NVS) ")"
|
|
|
|
|
+#define STR_BOOT_APP0 "boot_app0 (" TOSTRING(ESP_ADDR_BOOT_APP0) ")"
|
|
|
|
|
+#define STR_APP "Firmware (" TOSTRING(ESP_ADDR_APP) ")"
|
|
|
|
|
+#define STR_CUSTOM "Custom"
|
|
|
|
|
+#define STR_FLASH_S3 "[>] FLASH (ESP32-S3)"
|
|
|
|
|
+#define STR_FLASH "[>] FLASH"
|
|
|
static void _refresh_submenu(EspFlasherApp* app) {
|
|
static void _refresh_submenu(EspFlasherApp* app) {
|
|
|
Submenu* submenu = app->submenu;
|
|
Submenu* submenu = app->submenu;
|
|
|
|
|
|
|
@@ -159,16 +168,21 @@ static void _refresh_submenu(EspFlasherApp* app) {
|
|
|
|
|
|
|
|
submenu_set_header(submenu, "Browse for files to flash");
|
|
submenu_set_header(submenu, "Browse for files to flash");
|
|
|
submenu_add_item(
|
|
submenu_add_item(
|
|
|
- submenu, app->selected_flash_options[SelectedFlashS3Mode] ? "[x] Using ESP32-S3" : "[ ] Select if using S3", SubmenuIndexS3Mode, esp_flasher_scene_browse_callback, app);
|
|
|
|
|
|
|
+ submenu,
|
|
|
|
|
+ app->selected_flash_options[SelectedFlashS3Mode] ? "[x] Using ESP32-S3" :
|
|
|
|
|
+ "[ ] Select if using S3",
|
|
|
|
|
+ SubmenuIndexS3Mode,
|
|
|
|
|
+ esp_flasher_scene_browse_callback,
|
|
|
|
|
+ app);
|
|
|
const char* strSelectBootloader = STR_UNSELECT " " STR_BOOT;
|
|
const char* strSelectBootloader = STR_UNSELECT " " STR_BOOT;
|
|
|
- if (app->selected_flash_options[SelectedFlashS3Mode]) {
|
|
|
|
|
- if (app->selected_flash_options[SelectedFlashBoot]) {
|
|
|
|
|
|
|
+ if(app->selected_flash_options[SelectedFlashS3Mode]) {
|
|
|
|
|
+ if(app->selected_flash_options[SelectedFlashBoot]) {
|
|
|
strSelectBootloader = STR_SELECT " " STR_BOOT_S3;
|
|
strSelectBootloader = STR_SELECT " " STR_BOOT_S3;
|
|
|
} else {
|
|
} else {
|
|
|
strSelectBootloader = STR_UNSELECT " " STR_BOOT_S3;
|
|
strSelectBootloader = STR_UNSELECT " " STR_BOOT_S3;
|
|
|
}
|
|
}
|
|
|
} else {
|
|
} else {
|
|
|
- if (app->selected_flash_options[SelectedFlashBoot]) {
|
|
|
|
|
|
|
+ if(app->selected_flash_options[SelectedFlashBoot]) {
|
|
|
strSelectBootloader = STR_SELECT " " STR_BOOT;
|
|
strSelectBootloader = STR_SELECT " " STR_BOOT;
|
|
|
} else {
|
|
} else {
|
|
|
strSelectBootloader = STR_UNSELECT " " STR_BOOT;
|
|
strSelectBootloader = STR_UNSELECT " " STR_BOOT;
|
|
@@ -177,18 +191,42 @@ static void _refresh_submenu(EspFlasherApp* app) {
|
|
|
submenu_add_item(
|
|
submenu_add_item(
|
|
|
submenu, strSelectBootloader, SubmenuIndexBoot, esp_flasher_scene_browse_callback, app);
|
|
submenu, strSelectBootloader, SubmenuIndexBoot, esp_flasher_scene_browse_callback, app);
|
|
|
submenu_add_item(
|
|
submenu_add_item(
|
|
|
- submenu, app->selected_flash_options[SelectedFlashPart] ? STR_SELECT " " STR_PART : STR_UNSELECT " " STR_PART, SubmenuIndexPart, esp_flasher_scene_browse_callback, app);
|
|
|
|
|
|
|
+ submenu,
|
|
|
|
|
+ app->selected_flash_options[SelectedFlashPart] ? STR_SELECT " " STR_PART :
|
|
|
|
|
+ STR_UNSELECT " " STR_PART,
|
|
|
|
|
+ SubmenuIndexPart,
|
|
|
|
|
+ esp_flasher_scene_browse_callback,
|
|
|
|
|
+ app);
|
|
|
submenu_add_item(
|
|
submenu_add_item(
|
|
|
- submenu, app->selected_flash_options[SelectedFlashNvs] ? STR_SELECT " " STR_NVS : STR_UNSELECT " " STR_NVS, SubmenuIndexNvs, esp_flasher_scene_browse_callback, app);
|
|
|
|
|
|
|
+ submenu,
|
|
|
|
|
+ app->selected_flash_options[SelectedFlashNvs] ? STR_SELECT " " STR_NVS :
|
|
|
|
|
+ STR_UNSELECT " " STR_NVS,
|
|
|
|
|
+ SubmenuIndexNvs,
|
|
|
|
|
+ esp_flasher_scene_browse_callback,
|
|
|
|
|
+ app);
|
|
|
submenu_add_item(
|
|
submenu_add_item(
|
|
|
- submenu, app->selected_flash_options[SelectedFlashBootApp0] ? STR_SELECT " " STR_BOOT_APP0 : STR_UNSELECT " " STR_BOOT_APP0, SubmenuIndexBootApp0, esp_flasher_scene_browse_callback, app);
|
|
|
|
|
|
|
+ submenu,
|
|
|
|
|
+ app->selected_flash_options[SelectedFlashBootApp0] ? STR_SELECT " " STR_BOOT_APP0 :
|
|
|
|
|
+ STR_UNSELECT " " STR_BOOT_APP0,
|
|
|
|
|
+ SubmenuIndexBootApp0,
|
|
|
|
|
+ esp_flasher_scene_browse_callback,
|
|
|
|
|
+ app);
|
|
|
submenu_add_item(
|
|
submenu_add_item(
|
|
|
- submenu, app->selected_flash_options[SelectedFlashApp] ? STR_SELECT " " STR_APP : STR_UNSELECT " " STR_APP, SubmenuIndexApp, esp_flasher_scene_browse_callback, app);
|
|
|
|
|
|
|
+ submenu,
|
|
|
|
|
+ app->selected_flash_options[SelectedFlashApp] ? STR_SELECT " " STR_APP :
|
|
|
|
|
+ STR_UNSELECT " " STR_APP,
|
|
|
|
|
+ SubmenuIndexApp,
|
|
|
|
|
+ esp_flasher_scene_browse_callback,
|
|
|
|
|
+ app);
|
|
|
// TODO: custom addr
|
|
// TODO: custom addr
|
|
|
//submenu_add_item(
|
|
//submenu_add_item(
|
|
|
// submenu, app->selected_flash_options[SelectedFlashCustom] ? STR_SELECT " " STR_CUSTOM : STR_UNSELECT " " STR_CUSTOM, SubmenuIndexCustom, esp_flasher_scene_browse_callback, app);
|
|
// submenu, app->selected_flash_options[SelectedFlashCustom] ? STR_SELECT " " STR_CUSTOM : STR_UNSELECT " " STR_CUSTOM, SubmenuIndexCustom, esp_flasher_scene_browse_callback, app);
|
|
|
submenu_add_item(
|
|
submenu_add_item(
|
|
|
- submenu, app->selected_flash_options[SelectedFlashS3Mode] ? STR_FLASH_S3 : STR_FLASH, SubmenuIndexFlash, esp_flasher_scene_browse_callback, app);
|
|
|
|
|
|
|
+ submenu,
|
|
|
|
|
+ app->selected_flash_options[SelectedFlashS3Mode] ? STR_FLASH_S3 : STR_FLASH,
|
|
|
|
|
+ SubmenuIndexFlash,
|
|
|
|
|
+ esp_flasher_scene_browse_callback,
|
|
|
|
|
+ app);
|
|
|
|
|
|
|
|
submenu_set_selected_item(
|
|
submenu_set_selected_item(
|
|
|
submenu, scene_manager_get_scene_state(app->scene_manager, EspFlasherSceneBrowse));
|
|
submenu, scene_manager_get_scene_state(app->scene_manager, EspFlasherSceneBrowse));
|
|
@@ -212,8 +250,8 @@ void esp_flasher_scene_browse_on_enter(void* context) {
|
|
|
bool esp_flasher_scene_browse_on_event(void* context, SceneManagerEvent event) {
|
|
bool esp_flasher_scene_browse_on_event(void* context, SceneManagerEvent event) {
|
|
|
EspFlasherApp* app = context;
|
|
EspFlasherApp* app = context;
|
|
|
bool consumed = false;
|
|
bool consumed = false;
|
|
|
- if (event.type == SceneManagerEventTypeCustom) {
|
|
|
|
|
- if (event.event == EspFlasherEventRefreshSubmenu) {
|
|
|
|
|
|
|
+ if(event.type == SceneManagerEventTypeCustom) {
|
|
|
|
|
+ if(event.event == EspFlasherEventRefreshSubmenu) {
|
|
|
_refresh_submenu(app);
|
|
_refresh_submenu(app);
|
|
|
consumed = true;
|
|
consumed = true;
|
|
|
}
|
|
}
|