Skip to content

Commit d53bd27

Browse files
committed
fix hex problem
1 parent 242c654 commit d53bd27

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

build_platform.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,9 +336,7 @@ def generate_uf2(example_path):
336336
return output_file
337337

338338
# Generate using a hex file for all platforms except for ESP32-S2, ESP32-S3 (exports as .bin files)
339-
print("GENERATING FOR FQBN: ", fqbn)
340339
if not any (x in fqbn for x in ["esp32s2", "esp32s3"]):
341-
print("GENERATE HEX")
342340
cli_build_hex_path = "build/*.*." + fqbn.split(':')[2] + "/*.hex"
343341
hex_input_file = glob1(os.path.join(example_path, cli_build_hex_path))
344342
output_file = os.path.splitext(hex_input_file)[0] + ".uf2"

0 commit comments

Comments
 (0)