diff options
author | Damien George <damien.p.george@gmail.com> | 2015-09-12 22:22:30 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2015-09-12 22:22:30 +0100 |
commit | 229b908d2e459f350f958954dfbd6a0f093033c5 (patch) | |
tree | 5110ee09a10de49c516571d843a0221e8a994824 /esp8266 | |
parent | 3ca84026db59166441c5b33af12fe2826793e66b (diff) | |
download | micropython-229b908d2e459f350f958954dfbd6a0f093033c5.tar.gz micropython-229b908d2e459f350f958954dfbd6a0f093033c5.zip |
esp8266: Remove "time" command from deploy target.
Diffstat (limited to 'esp8266')
-rw-r--r-- | esp8266/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/esp8266/Makefile b/esp8266/Makefile index d3d726592b..7019335065 100644 --- a/esp8266/Makefile +++ b/esp8266/Makefile @@ -112,7 +112,7 @@ $(BUILD)/frozen.c: $(wildcard $(SCRIPTDIR)/*) $(CONFVARS_FILE) deploy: $(BUILD)/firmware-combined.bin $(ECHO) "Writing $< to the board" #$(Q)esptool.py --port $(PORT) write_flash 0 $< - $(Q)time esptool.py --port $(PORT) --baud $(BAUD) write_flash 0 $(BUILD)/firmware.elf-0x00000.bin 0x10000 $(BUILD)/firmware.elf-0x10000.bin + $(Q)esptool.py --port $(PORT) --baud $(BAUD) write_flash 0 $(BUILD)/firmware.elf-0x00000.bin 0x10000 $(BUILD)/firmware.elf-0x10000.bin reset: echo -e "\r\nimport pyb; pyb.hard_reset()\r\n" >$(PORT) |