From 9b91b9fb1f09e7a154a8863c46b30ad914238177 Mon Sep 17 00:00:00 2001 From: Ton Huisman Date: Sun, 24 Sep 2023 23:18:45 +0200 Subject: [PATCH] [Scripts] Handle 8M builds in WebFlasher --- tools/pio/generate_web_flasher_manifest.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/pio/generate_web_flasher_manifest.py b/tools/pio/generate_web_flasher_manifest.py index 1c72dff795..2500b4cfac 100644 --- a/tools/pio/generate_web_flasher_manifest.py +++ b/tools/pio/generate_web_flasher_manifest.py @@ -84,6 +84,9 @@ def parse_filename(file, version, variant, file_suffix): if '_4M316k' in variant: flash_size = '4M' main_group = '4M Flash' + elif '_8M1M' in variant: + flash_size = '8M1M' + main_group = '8M Flash' elif '_16M1M' in variant: flash_size = '16M1M' main_group = '16M Flash' @@ -264,6 +267,7 @@ def generate_manifest_files(bin_folder, output_prefix): '4M Flash', '4M Flash ESP32-solo1', '4M Flash Collection Builds', + '8M Flash', '16M Flash', '2M Flash', '1M Flash',