diff options
| author | Jeff Epler <jepler@gmail.com> | 2020-10-26 19:07:37 -0500 |
|---|---|---|
| committer | Jeff Epler <jepler@gmail.com> | 2020-10-26 19:07:37 -0500 |
| commit | 2ba66599670c0d3d0f5ef5dc8780c34cf9d61231 (patch) | |
| tree | 87dffafd78529894b22f39a5b7e175f77169e07e /ports/esp32s2 | |
| parent | c9f7df3bab8c46cc51b12eefc95391a00ba8c7e1 (diff) | |
esp32s2: Makefile: restore --no-stub
Diffstat (limited to 'ports/esp32s2')
| -rw-r--r-- | ports/esp32s2/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/esp32s2/Makefile b/ports/esp32s2/Makefile index 5d8ccad50..8d891edd0 100644 --- a/ports/esp32s2/Makefile +++ b/ports/esp32s2/Makefile @@ -331,10 +331,10 @@ $(BUILD)/firmware.uf2: $(BUILD)/circuitpython-firmware.bin $(Q)$(PYTHON3) $(TOP)/tools/uf2/utils/uf2conv.py -f 0xbfdd4eee -b 0x0000 -c -o $@ $^ flash: $(BUILD)/firmware.bin - esptool.py --chip esp32s2 -p $(PORT) -b 460800 --before=default_reset --after=hard_reset write_flash $(FLASH_FLAGS) 0x0000 $^ + esptool.py --chip esp32s2 -p $(PORT) --no-stub -b 460800 --before=default_reset --after=hard_reset write_flash $(FLASH_FLAGS) 0x0000 $^ flash-circuitpython-only: $(BUILD)/circuitpython-firmware.bin - esptool.py --chip esp32s2 -p $(PORT) -b 460800 --before=default_reset --after=hard_reset write_flash $(FLASH_FLAGS) 0x10000 $^ + esptool.py --chip esp32s2 -p $(PORT) --no-stub -b 460800 --before=default_reset --after=hard_reset write_flash $(FLASH_FLAGS) 0x10000 $^ include $(TOP)/py/mkrules.mk |
