Skip to content

Commit

Permalink
Merge pull request letscontrolit#4823 from tonhuisman/feature/Scripts…
Browse files Browse the repository at this point in the history
…-webflasher-handle-8m-builds

[Scripts] Handle 8M builds in WebFlasher
  • Loading branch information
TD-er committed Sep 24, 2023
2 parents bb22164 + 9b91b9f commit 3409e9e
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 3409e9e

Please sign in to comment.