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 0c2b777 commit 4756fceCopy full SHA for 4756fce
build_platform.py
@@ -336,7 +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 (exports as .bin files)
339
- if not "esp32s2" in fqbn:
+ if not "esp32s2" or not "esp32s3" in fqbn:
340
cli_build_hex_path = "build/*.*." + fqbn.split(':')[2] + "/*.hex"
341
hex_input_file = glob1(os.path.join(example_path, cli_build_hex_path))
342
output_file = os.path.splitext(hex_input_file)[0] + ".uf2"
0 commit comments