Skip to content

Commit

Permalink
[Scripts] Handle 8M builds in WebFlasher
Browse files Browse the repository at this point in the history
  • Loading branch information
tonhuisman committed Sep 24, 2023
1 parent bb22164 commit 9b91b9f
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tools/pio/generate_web_flasher_manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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',
Expand Down

0 comments on commit 9b91b9f

Please sign in to comment.