From f3b79c412f406e5816e36e475edff98581b7efa1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Teichgr=C3=A4ber?= Date: Fri, 28 Nov 2025 21:26:16 +0100 Subject: [PATCH] targets/nucleo-f722ze.json: add build-tag stm32f722, change stm32f7x2.s to ..722.s In stm32-rs, stm32f7x2.svd got replaced by stm32f722.svd and stm32f732.svd. This change adjusts the target definition where stm32f7x2 is used, --- targets/nucleo-f722ze.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/targets/nucleo-f722ze.json b/targets/nucleo-f722ze.json index f426b332d..88d7aed3e 100644 --- a/targets/nucleo-f722ze.json +++ b/targets/nucleo-f722ze.json @@ -1,10 +1,10 @@ { "inherits": ["cortex-m7"], - "build-tags": ["nucleof722ze", "stm32f7x2", "stm32f7", "stm32"], + "build-tags": ["nucleof722ze", "stm32f722", "stm32f7x2", "stm32f7", "stm32"], "serial": "uart", "linkerscript": "targets/stm32f7x2zetx.ld", "extra-files": [ - "src/device/stm32/stm32f7x2.s" + "src/device/stm32/stm32f722.s" ], "flash-method": "openocd", "openocd-interface": "stlink-v2-1",