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 242c654 commit d53bd27Copy full SHA for d53bd27
build_platform.py
@@ -336,9 +336,7 @@ def generate_uf2(example_path):
336
return output_file
337
338
# Generate using a hex file for all platforms except for ESP32-S2, ESP32-S3 (exports as .bin files)
339
- print("GENERATING FOR FQBN: ", fqbn)
340
if not any (x in fqbn for x in ["esp32s2", "esp32s3"]):
341
- print("GENERATE HEX")
342
cli_build_hex_path = "build/*.*." + fqbn.split(':')[2] + "/*.hex"
343
hex_input_file = glob1(os.path.join(example_path, cli_build_hex_path))
344
output_file = os.path.splitext(hex_input_file)[0] + ".uf2"
0 commit comments