This is an automated email from Gerrit. "Ahmed Haoues <[email protected]>" just uploaded a new patch set to Gerrit, which you can find at https://review.openocd.org/c/openocd/+/9357
-- gerrit commit a5840901910d9e8dc2dae7cba115d038f4e0023d Author: HAOUES Ahmed <[email protected]> Date: Wed Dec 31 11:22:02 2025 +0100 flash/stm32l4x: Fix flash size address for STM32WBA5 Update fsize_addr parameter to reference non-secure memory address Change-Id: I5098f478169bfaac726b96b071b99ca63d25d531 Signed-off-by: HAOUES Ahmed <[email protected]> diff --git a/src/flash/nor/stm32l4x.c b/src/flash/nor/stm32l4x.c index 4c25875ab0..82cd96aec8 100644 --- a/src/flash/nor/stm32l4x.c +++ b/src/flash/nor/stm32l4x.c @@ -753,7 +753,7 @@ static const struct stm32l4_part_info stm32l4_parts[] = { .max_flash_size_kb = 1024, .flags = F_QUAD_WORD_PROG | F_HAS_TZ | F_HAS_L5_FLASH_REGS, .flash_regs_base = 0x40022000, - .fsize_addr = 0x0FF907A0, + .fsize_addr = 0x0BF907A0, .otp_base = 0x0FF90000, .otp_size = 512, }, --
