2016-08-17 11:08:22 -04:00
|
|
|
# Component support for esptool.py. Doesn't do much by itself,
|
|
|
|
# components have their own flash targets that can use these variables.
|
|
|
|
ESPPORT ?= $(CONFIG_ESPTOOLPY_PORT)
|
|
|
|
ESPBAUD ?= $(CONFIG_ESPTOOLPY_BAUD)
|
|
|
|
|
|
|
|
PYTHON ?= $(call dequote,$(CONFIG_PYTHON))
|
|
|
|
|
|
|
|
# two commands that can be used from other components
|
|
|
|
# to invoke esptool.py (with or without serial port args)
|
|
|
|
#
|
|
|
|
# NB: esptool.py lives in the sdk/bin directory not the component directory
|
2016-08-19 02:32:35 -04:00
|
|
|
ESPTOOLPY := $(PYTHON) $(IDF_PATH)/bin/esptool.py --chip esp32
|
2016-08-17 11:08:22 -04:00
|
|
|
ESPTOOLPY_SERIAL := $(ESPTOOLPY) --port $(ESPPORT) --baud $(ESPBAUD)
|
|
|
|
|
2016-08-22 06:43:47 -04:00
|
|
|
ESPTOOLPY_WRITE_FLASH=$(ESPTOOLPY_SERIAL) write_flash $(if $(CONFIG_ESPTOOLPY_COMPRESSED),-z)
|
|
|
|
|
2016-08-18 05:11:27 -04:00
|
|
|
ESPTOOL_ALL_FLASH_ARGS += $(CONFIG_APP_OFFSET) $(APP_BIN)
|
2016-08-17 11:08:22 -04:00
|
|
|
|
2016-08-18 05:11:27 -04:00
|
|
|
$(APP_BIN): $(APP_ELF)
|
2016-08-17 11:08:22 -04:00
|
|
|
$(Q) $(ESPTOOLPY) elf2image -o $@ $<
|
|
|
|
|
2016-08-18 05:11:27 -04:00
|
|
|
flash: all_binaries
|
2016-08-17 11:08:22 -04:00
|
|
|
@echo "Flashing project app to $(CONFIG_APP_OFFSET)..."
|
2016-08-22 06:43:47 -04:00
|
|
|
$(Q) $(ESPTOOLPY_WRITE_FLASH) $(ESPTOOL_ALL_FLASH_ARGS)
|
2016-08-17 11:08:22 -04:00
|
|
|
|
2016-08-18 05:11:27 -04:00
|
|
|
app-flash: $(APP_BIN)
|
2016-08-22 06:43:47 -04:00
|
|
|
$(Q) $(ESPTOOLPY_WRITE_FLASH) $(CONFIG_APP_OFFSET) $(APP_BIN)
|