summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorMike Causer <mcauser@gmail.com>2021-02-26 09:36:48 +1100
committerDamien George <damien@micropython.org>2021-03-11 15:49:10 +1100
commit8785acac22a25d376d11c7dda5d0556432818ac2 (patch)
treefdb16c4b7334409f63e9a7b3da3a35bc5ef123d4
parent098ac11bb0cb912909af801015ac07bd2bf01ce7 (diff)
downloadmicropython-8785acac22a25d376d11c7dda5d0556432818ac2.tar.gz
micropython-8785acac22a25d376d11c7dda5d0556432818ac2.zip
esp32/Makefile: Specify port and baud on erase_flash command.
-rw-r--r--ports/esp32/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/esp32/Makefile b/ports/esp32/Makefile
index 1249795993..9a3a15d6ee 100644
--- a/ports/esp32/Makefile
+++ b/ports/esp32/Makefile
@@ -37,7 +37,7 @@ deploy:
idf.py $(IDFPY_FLAGS) -p $(PORT) -b $(BAUD) flash
erase:
- idf.py $(IDFPY_FLAGS) erase_flash
+ idf.py $(IDFPY_FLAGS) -p $(PORT) -b $(BAUD) erase_flash
submodules:
git submodule update --init $(addprefix ../../,$(GIT_SUBMODULES))