This is an automated email from Gerrit. "zapb <d...@zapb.de>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/9001
-- gerrit commit 158241d03baab09d7deec4d812bce3e5f659048f Author: Marc Schink <d...@zapb.de> Date: Sun Jul 13 19:56:55 2025 +0000 flash/nor/stm32h7x: Rework 'option_read' output Remove the verbose command output to enable processing with Tcl. Change-Id: Ic552747b78e4c095a267275e0affd3b9643657b4 Signed-off-by: Marc Schink <d...@zapb.de> diff --git a/src/flash/nor/stm32h7x.c b/src/flash/nor/stm32h7x.c index c02fae992c..cc22dbd040 100644 --- a/src/flash/nor/stm32h7x.c +++ b/src/flash/nor/stm32h7x.c @@ -1114,8 +1114,7 @@ COMMAND_HANDLER(stm32x_handle_option_read_command) if (retval != ERROR_OK) return retval; - command_print(CMD, "Option Register: <0x%" PRIx32 "> = 0x%" PRIx32, - stm32x_get_flash_reg(bank, reg_offset), value); + command_print(CMD, "0x%" PRIx32, value); return retval; } --