diff --git a/ESP/tools/createzip.py b/ESP/tools/createzip.py index 9e6d334..eb7d3df 100644 --- a/ESP/tools/createzip.py +++ b/ESP/tools/createzip.py @@ -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)