tools: Wrap flash binaries into a UF2 file for flashing through USB MSC

@mmoskal This commit adds basic support for UF2 into ESP-IDF.
This commit is contained in:
Roland Dobai
2020-12-11 16:28:11 +01:00
parent 286f06b274
commit 548ea1bdd5
14 changed files with 557 additions and 1 deletions
+1 -1
View File
@@ -465,7 +465,7 @@ def init_cli(verbose_output=None):
def _print_closing_message(self, args, actions):
# print a closing message of some kind
#
if "flash" in str(actions) or "dfu" in str(actions):
if any(t in str(actions) for t in ("flash", "dfu", "uf2", "uf2-app")):
print("Done")
return