We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e26da80 commit d2200b0Copy full SHA for d2200b0
builder/esp32.py
@@ -511,7 +511,7 @@ def compile(): # NOQA
511
'"partitions-2MiB.csv"'
512
])
513
514
- if flash_size == '4':
+ elif flash_size == '4':
515
base_config.extend([
516
'CONFIG_ESPTOOLPY_FLASHSIZE_4MB=y',
517
'CONFIG_PARTITION_TABLE_CUSTOM_FILENAME='
@@ -530,7 +530,7 @@ def compile(): # NOQA
530
531
'"partitions-16MiB.csv"'
532
533
- if flash_size == '32':
+ elif flash_size == '32':
534
535
'CONFIG_ESPTOOLPY_FLASHSIZE_32MB=y',
536
0 commit comments