File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -220,8 +220,6 @@ def manually_install_esp32_bsp(repo_info):
220
220
221
221
def install_platform (fqbn , full_platform_name = None ):
222
222
print ("Installing" , fqbn , end = " " )
223
- print ("FQBN: " , fqbn )
224
- print ("platform_name: " , full_platform_name )
225
223
if fqbn == "adafruit:avr" : # we have a platform dep
226
224
install_platform ("arduino:avr" )
227
225
if full_platform_name [2 ] is not None :
@@ -338,7 +336,9 @@ def generate_uf2(example_path):
338
336
return output_file
339
337
340
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 )
341
340
if not "esp32s2" or not "esp32s3" in fqbn :
341
+ print ("GENERATE HEX" )
342
342
cli_build_hex_path = "build/*.*." + fqbn .split (':' )[2 ] + "/*.hex"
343
343
hex_input_file = glob1 (os .path .join (example_path , cli_build_hex_path ))
344
344
output_file = os .path .splitext (hex_input_file )[0 ] + ".uf2"
You can’t perform that action at this time.
0 commit comments