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 e498c67 commit 301d3aaCopy full SHA for 301d3aa
esp32/Makefile
@@ -732,6 +732,10 @@ deploy: $(BUILD)/firmware.bin
732
$(ECHO) "Writing $^ to the board"
733
$(Q)$(ESPTOOL) --chip esp32 --port $(PORT) --baud $(BAUD) write_flash -z --flash_mode $(FLASH_MODE) --flash_freq $(FLASH_FREQ) 0x1000 $^
734
735
+flash: $(BUILD)/firmware.bin
736
+ $(ECHO) "Writing $^ to the board"
737
+ $(Q)$(ESPTOOL) --port $(PORT) --baud $(BAUD) write_flash 0x10000 build/application.bin
738
+
739
erase:
740
$(ECHO) "Erasing flash"
741
$(Q)$(ESPTOOL) --chip esp32 --port $(PORT) --baud $(BAUD) erase_flash
0 commit comments