From dccc9a990bc639fbf63ab59f5d496d0635d9c8dd Mon Sep 17 00:00:00 2001 From: tychovrahe Date: Thu, 25 Apr 2024 10:08:13 +0200 Subject: [PATCH] chore(core): fix flash_combine makefile command [no changelog] --- core/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Makefile b/core/Makefile index dba27525e..fe8b4bf61 100644 --- a/core/Makefile +++ b/core/Makefile @@ -340,7 +340,7 @@ else endif flash_combine: $(PRODTEST_BUILD_DIR)/combined.bin ## flash combined using OpenOCD - $(OPENOCD) -c "init; reset halt; flash write_image erase $< $(FLASH_START); exit" + $(OPENOCD) -c "init; reset halt; flash write_image erase $< $(BOARDLOADER_START); exit" flash_erase: ## erase all sectors in flash bank 0 $(OPENOCD) -c "init; reset halt; flash info 0; flash erase_sector 0 0 last; flash erase_check 0; exit"