ci(ci-fix): fix build bug related to esp32s3

This commit is contained in:
ZanzyTHEbar 2023-10-27 15:07:19 +01:00
parent 770c854afd
commit 1478b4fddb

View File

@ -75,6 +75,9 @@ def createZip(source, target, env):
# capitalize the chip type
chip_type = chip_type.upper()
# add hyphen between ESP32 and the suffix (WROOM, WROVER, etc)
chip_type = chip_type.replace("ESP32", "ESP32-")
print("Flash Mode: %s" % flash_mode)
print("Chip Type: %s" % chip_type)
print("Flash Frequency: %s" % flash_freq)