2016-08-17 15:08:22 +00: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)
|
2016-09-01 07:47:09 +00:00
|
|
|
ESPFLASHMODE ?= $(CONFIG_ESPTOOLPY_FLASHMODE)
|
2016-09-02 04:29:01 +00:00
|
|
|
ESPFLASHFREQ ?= $(CONFIG_ESPTOOLPY_FLASHFREQ)
|
2016-10-18 11:03:59 +00:00
|
|
|
ESPFLASHSIZE ?= $(CONFIG_ESPTOOLPY_FLASHSIZE)
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2016-12-03 22:11:22 +00:00
|
|
|
CONFIG_ESPTOOLPY_COMPRESSED ?=
|
|
|
|
|
2019-03-14 08:54:04 +00:00
|
|
|
PYTHON ?= $(call dequote,$(CONFIG_SDK_PYTHON))
|
2016-08-17 15:08:22 +00:00
|
|
|
|
|
|
|
# two commands that can be used from other components
|
|
|
|
# to invoke esptool.py (with or without serial port args)
|
|
|
|
#
|
2016-09-12 07:48:40 +00:00
|
|
|
ESPTOOLPY_SRC := $(COMPONENT_PATH)/esptool/esptool.py
|
|
|
|
ESPTOOLPY := $(PYTHON) $(ESPTOOLPY_SRC) --chip esp32
|
2016-12-20 07:02:47 +00:00
|
|
|
ESPTOOLPY_SERIAL := $(ESPTOOLPY) --port $(ESPPORT) --baud $(ESPBAUD) --before $(CONFIG_ESPTOOLPY_BEFORE) --after $(CONFIG_ESPTOOLPY_AFTER)
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2016-10-31 23:50:16 +00:00
|
|
|
# Supporting esptool command line tools
|
|
|
|
ESPEFUSEPY := $(PYTHON) $(COMPONENT_PATH)/esptool/espefuse.py
|
|
|
|
ESPSECUREPY := $(PYTHON) $(COMPONENT_PATH)/esptool/espsecure.py
|
2016-11-03 06:33:30 +00:00
|
|
|
export ESPSECUREPY # is used in bootloader_support component
|
2016-10-31 23:50:16 +00:00
|
|
|
|
2016-10-18 11:03:59 +00:00
|
|
|
ESPTOOL_FLASH_OPTIONS := --flash_mode $(ESPFLASHMODE) --flash_freq $(ESPFLASHFREQ) --flash_size $(ESPFLASHSIZE)
|
2016-12-20 07:02:47 +00:00
|
|
|
ifdef CONFIG_ESPTOOLPY_FLASHSIZE_DETECT
|
|
|
|
ESPTOOL_WRITE_FLASH_OPTIONS := --flash_mode $(ESPFLASHMODE) --flash_freq $(ESPFLASHFREQ) --flash_size detect
|
|
|
|
else
|
|
|
|
ESPTOOL_WRITE_FLASH_OPTIONS := $(ESPTOOL_FLASH_OPTIONS)
|
|
|
|
endif
|
2016-10-18 11:03:59 +00:00
|
|
|
|
2016-10-31 23:50:16 +00:00
|
|
|
ESPTOOL_ELF2IMAGE_OPTIONS :=
|
|
|
|
|
2018-07-13 01:52:57 +00:00
|
|
|
ifdef CONFIG_SECURE_BOOT_ENABLED
|
|
|
|
ifndef CONFIG_SECURE_BOOT_ALLOW_SHORT_APP_PARTITION
|
|
|
|
ifndef IS_BOOTLOADER_BUILD
|
|
|
|
ESPTOOL_ELF2IMAGE_OPTIONS += --secure-pad
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2019-03-15 12:02:16 +00:00
|
|
|
ifndef IS_BOOTLOADER_BUILD
|
2019-01-09 12:06:01 +00:00
|
|
|
ESPTOOL_ELF2IMAGE_OPTIONS += --elf-sha256-offset 0xb0
|
2019-03-15 12:02:16 +00:00
|
|
|
endif
|
2019-01-09 12:06:01 +00:00
|
|
|
|
2017-01-10 03:04:54 +00:00
|
|
|
ESPTOOLPY_WRITE_FLASH=$(ESPTOOLPY_SERIAL) write_flash $(if $(CONFIG_ESPTOOLPY_COMPRESSED),-z,-u) $(ESPTOOL_WRITE_FLASH_OPTIONS)
|
2016-08-22 10:43:47 +00:00
|
|
|
|
2018-04-19 04:42:26 +00:00
|
|
|
ESPTOOL_ALL_FLASH_ARGS += $(APP_OFFSET) $(APP_BIN)
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2016-12-19 02:06:21 +00:00
|
|
|
ifdef CONFIG_SECURE_BOOT_BUILD_SIGNED_BINARIES
|
2016-11-03 06:33:30 +00:00
|
|
|
ifndef IS_BOOTLOADER_BUILD
|
2016-12-19 02:06:21 +00:00
|
|
|
# for locally signed secure boot image, add a signing step to get from unsigned app to signed app
|
2016-11-07 04:45:57 +00:00
|
|
|
APP_BIN_UNSIGNED := $(APP_BIN:.bin=-unsigned.bin)
|
|
|
|
|
2016-12-19 02:06:21 +00:00
|
|
|
$(APP_BIN): $(APP_BIN_UNSIGNED) $(SECURE_BOOT_SIGNING_KEY) $(SDKCONFIG_MAKEFILE)
|
2016-11-25 03:13:05 +00:00
|
|
|
$(ESPSECUREPY) sign_data --keyfile $(SECURE_BOOT_SIGNING_KEY) -o $@ $<
|
2016-11-03 06:33:30 +00:00
|
|
|
endif
|
|
|
|
endif
|
2016-11-07 04:45:57 +00:00
|
|
|
# non-secure boot (or bootloader), both these files are the same
|
|
|
|
APP_BIN_UNSIGNED ?= $(APP_BIN)
|
|
|
|
|
2018-08-20 07:39:56 +00:00
|
|
|
$(APP_BIN_UNSIGNED): $(APP_ELF) $(ESPTOOLPY_SRC) | check_python_dependencies
|
2016-11-14 03:48:10 +00:00
|
|
|
$(ESPTOOLPY) elf2image $(ESPTOOL_FLASH_OPTIONS) $(ESPTOOL_ELF2IMAGE_OPTIONS) -o $@ $<
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2018-09-03 09:42:10 +00:00
|
|
|
flash: all_binaries $(ESPTOOLPY_SRC) $(call prereq_if_explicit,erase_flash) partition_table_get_info | check_python_dependencies
|
2018-04-19 04:42:26 +00:00
|
|
|
@echo "Flashing binaries to serial port $(ESPPORT) (app at offset $(APP_OFFSET))..."
|
2016-11-25 03:09:26 +00:00
|
|
|
ifdef CONFIG_SECURE_BOOT_ENABLED
|
2016-10-31 23:50:16 +00:00
|
|
|
@echo "(Secure boot enabled, so bootloader not flashed automatically. See 'make bootloader' output)"
|
|
|
|
endif
|
2016-11-11 01:29:38 +00:00
|
|
|
$(ESPTOOLPY_WRITE_FLASH) $(ESPTOOL_ALL_FLASH_ARGS)
|
2016-08-17 15:08:22 +00:00
|
|
|
|
2018-09-03 09:42:10 +00:00
|
|
|
app-flash: $(APP_BIN) $(ESPTOOLPY_SRC) $(call prereq_if_explicit,erase_flash) partition_table_get_info | check_python_dependencies
|
2018-04-19 04:42:26 +00:00
|
|
|
@echo "Flashing app to serial port $(ESPPORT), offset $(APP_OFFSET)..."
|
|
|
|
$(ESPTOOLPY_WRITE_FLASH) $(APP_OFFSET) $(APP_BIN)
|
2016-09-12 07:48:40 +00:00
|
|
|
|
2016-11-16 00:12:48 +00:00
|
|
|
# Submodules normally added in component.mk, but can be added
|
|
|
|
# at the project level as long as qualified path
|
|
|
|
COMPONENT_SUBMODULES += $(COMPONENT_PATH)/esptool
|
2016-12-19 23:00:04 +00:00
|
|
|
|
2018-09-03 09:42:10 +00:00
|
|
|
erase_flash: | check_python_dependencies
|
2016-12-19 23:00:04 +00:00
|
|
|
@echo "Erasing entire flash..."
|
|
|
|
$(ESPTOOLPY_SERIAL) erase_flash
|
2016-12-22 05:32:19 +00:00
|
|
|
|
2019-05-09 11:39:30 +00:00
|
|
|
MONITORBAUD ?= $(CONFIG_ESPTOOLPY_MONITOR_BAUD)
|
2016-12-30 01:19:02 +00:00
|
|
|
|
2017-03-07 22:15:19 +00:00
|
|
|
MONITOR_PYTHON := $(PYTHON)
|
|
|
|
|
|
|
|
ifeq ("$(OS)","Windows_NT")
|
|
|
|
# miniterm and idf_monitor both need a Windows Console PTY in order
|
|
|
|
# to correctly handle user input
|
|
|
|
MONITOR_PYTHON := winpty $(PYTHON)
|
|
|
|
endif
|
|
|
|
|
2016-12-30 01:19:02 +00:00
|
|
|
# note: if you want to run miniterm from command line, can simply run
|
|
|
|
# miniterm.py on the console. The '$(PYTHON) -m serial.tools.miniterm'
|
|
|
|
# is to allow for the $(PYTHON) variable overriding the python path.
|
2018-09-03 09:42:10 +00:00
|
|
|
simple_monitor: $(call prereq_if_explicit,%flash) | check_python_dependencies
|
2017-03-07 22:15:19 +00:00
|
|
|
$(MONITOR_PYTHON) -m serial.tools.miniterm --rts 0 --dtr 0 --raw $(ESPPORT) $(MONITORBAUD)
|
|
|
|
|
2018-05-30 13:35:50 +00:00
|
|
|
PRINT_FILTER ?=
|
|
|
|
|
2019-03-14 08:54:04 +00:00
|
|
|
MONITOR_OPTS := --baud $(MONITORBAUD) --port $(ESPPORT) --toolchain-prefix $(CONFIG_SDK_TOOLPREFIX) --make "$(MAKE)" --print_filter "$(PRINT_FILTER)"
|
2017-03-17 10:41:18 +00:00
|
|
|
|
2018-09-03 09:42:10 +00:00
|
|
|
monitor: $(call prereq_if_explicit,%flash) | check_python_dependencies
|
2017-03-07 22:15:19 +00:00
|
|
|
$(summary) MONITOR
|
|
|
|
[ -f $(APP_ELF) ] || echo "*** 'make monitor' target requires an app to be compiled and flashed first."
|
|
|
|
[ -f $(APP_ELF) ] || echo "*** Run 'make flash monitor' to build, flash and monitor"
|
|
|
|
[ -f $(APP_ELF) ] || echo "*** Or alternatively 'make simple_monitor' to view the serial port as-is."
|
|
|
|
[ -f $(APP_ELF) ] || exit 1
|
2017-03-17 10:41:18 +00:00
|
|
|
$(MONITOR_PYTHON) $(IDF_PATH)/tools/idf_monitor.py $(MONITOR_OPTS) $(APP_ELF)
|
2016-12-30 01:19:02 +00:00
|
|
|
|
2016-12-22 05:32:19 +00:00
|
|
|
.PHONY: erase_flash
|