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,
This commit is contained in:
Michael Teichgräber
2025-11-28 21:26:16 +01:00
committed by deadprogram
parent f4f3ad5051
commit f3b79c412f
+2 -2
View File
@@ -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",