Skip to content
Snippets Groups Projects
Commit 1bbc389d authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

esp8266: Allow to override serial port.

parent 075d5974
Branches
No related tags found
No related merge requests found
...@@ -10,6 +10,7 @@ ifeq ($(ESP_SDK),) ...@@ -10,6 +10,7 @@ ifeq ($(ESP_SDK),)
$(error ESP_SDK must be set) $(error ESP_SDK must be set)
endif endif
PORT = /dev/ttyACM0
CROSS_COMPILE = xtensa-lx106-elf- CROSS_COMPILE = xtensa-lx106-elf-
INC = -I. INC = -I.
...@@ -72,9 +73,9 @@ all: $(BUILD)/firmware-combined.bin ...@@ -72,9 +73,9 @@ all: $(BUILD)/firmware-combined.bin
deploy: $(BUILD)/firmware-combined.bin deploy: $(BUILD)/firmware-combined.bin
$(ECHO) "Writing $< to the board" $(ECHO) "Writing $< to the board"
$(Q)esptool.py --port /dev/ttyACM0 write_flash 0 $< $(Q)esptool.py --port $(PORT) write_flash 0 $<
#$(Q)esptool.py --port /dev/ttyACM0 write_flash 0 $(BUILD)/firmware.elf-0x00000.bin #$(Q)esptool.py --port $(PORT) write_flash 0 $(BUILD)/firmware.elf-0x00000.bin
#$(Q)esptool.py --port /dev/ttyACM0 write_flash 0x10000 $(BUILD)/firmware.elf-0x10000.bin #$(Q)esptool.py --port $(PORT) write_flash 0x10000 $(BUILD)/firmware.elf-0x10000.bin
$(BUILD)/firmware-combined.bin: $(BUILD)/firmware.elf $(BUILD)/firmware-combined.bin: $(BUILD)/firmware.elf
$(ECHO) "Create $@" $(ECHO) "Create $@"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment