Commit cf4a4f2a authored by Peter Magnusson's avatar Peter Magnusson
Browse files

Windows doesn't like forward slash as input to esptool.py

parent ae6ff1a0
...@@ -141,7 +141,7 @@ endef ...@@ -141,7 +141,7 @@ endef
$(BINODIR)/%.bin: $(IMAGEODIR)/%.out $(BINODIR)/%.bin: $(IMAGEODIR)/%.out
@mkdir -p $(BINODIR) @mkdir -p $(BINODIR)
$(ESPTOOL) elf2image $< -o $(FIRMWAREDIR)/ $(ESPTOOL) elf2image $< -o $(FIRMWAREDIR)
############################################################# #############################################################
# Rules base # Rules base
...@@ -162,7 +162,7 @@ flash: ...@@ -162,7 +162,7 @@ flash:
ifndef PDIR ifndef PDIR
$(MAKE) -C ./app flash $(MAKE) -C ./app flash
else else
$(ESPTOOL) --port $(ESPPORT) write_flash 0x00000 $(FIRMWAREDIR)/0x00000.bin 0x10000 $(FIRMWAREDIR)/0x10000.bin $(ESPTOOL) --port $(ESPPORT) write_flash 0x00000 $(FIRMWAREDIR)0x00000.bin 0x10000 $(FIRMWAREDIR)0x10000.bin
endif endif
.subdirs: .subdirs:
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment