From 0d57e3dba656cf47e5a9a98ddd4a2ba59643b74d Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Fri, 18 Oct 2024 11:07:22 +0900 Subject: [PATCH] tools/esp32s3/Config.mk: fix "unterminated call to function" error this # would be parsed by make as a start of a comment. --- tools/esp32s3/Config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/esp32s3/Config.mk b/tools/esp32s3/Config.mk index d21294c887..1e27335812 100644 --- a/tools/esp32s3/Config.mk +++ b/tools/esp32s3/Config.mk @@ -114,7 +114,7 @@ endif ESPTOOL_BINS += $(FLASH_APP) ifeq ($(CONFIG_BUILD_PROTECTED),y) - ESPTOOL_BINS += $(shell printf "%#x\n" $$(( $(CONFIG_ESP32S3_KERNEL_OFFSET) + $(CONFIG_ESP32S3_KERNEL_IMAGE_SIZE) ))) nuttx_user.bin + ESPTOOL_BINS += $(shell printf "%\#x\n" $$(( $(CONFIG_ESP32S3_KERNEL_OFFSET) + $(CONFIG_ESP32S3_KERNEL_IMAGE_SIZE) ))) nuttx_user.bin endif # MERGEBIN -- Merge raw binary files into a single file