What changed, and why it matters
This commit adds a configuration file for OpenOCD, a debugging tool used during hardware development and testing. It tells the debugger how to connect to an STM32U5 test board using a J-Link adapter. There is no change to firmware code, no user-facing feature, and no security-relevant behavior.
No security action needed. Treat as normal development tooling change.
Security signals we found
No strong security signals were identified.
Evidence from the diff
The new file scripts/stm32u5g9z-testboard.cfg is an OpenOCD board/target script. It sources the J-Link interface config, selects SWD transport, configures reset behavior, sources the STM32U5 target config, sets a physical work-area address beyond RTT buffers, and sets the adapter speed. It is purely a development/debugging aid and does not alter runtime firmware logic, cryptography, or device behavior.
Changed components
scripts/stm32u5g9z-testboard.cfgInspect captured patch +16 / −0
### scripts/stm32u5g9z-testboard.cfg
@@ -0,0 +1,16 @@
+source [find interface/jlink.cfg]
+
+transport select swd
+
+reset_config srst_only connect_assert_srst
+#reset_config none
+
+source [find target/stm32u5x.cfg]
+
+cortex_m reset_config sysresetreq
+
+# set working area beyond the RTT buffers so they don't get clobbered
+set _TARGETNAME [target current]
+$_TARGETNAME configure -work-area-phys 0x20002000
+
+adapter speed 3300Why this scored 15/100
Community notes
Notes can correct, qualify, or add evidence to the AI analysis. Every note shown here has been validated by a human moderator.
The AI analysis stands alone for now. Submit a note if you can add evidence or important context.