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/+/9531
-- gerrit commit 8594342849a24342c761b410679bc3f6474e451d Author: HAOUES Ahmed <[email protected]> Date: Thu Jul 17 09:12:41 2025 +0100 flash/bluenrg-x: support SPIRIT3R The SPIRIT3R is similar to the SPIRIT3, with 16KB of SRAM Change-Id: Id74104265b3f438f2c2e604e3c773edf657e13b9 Signed-off-by: HAOUES Ahmed <[email protected]> diff --git a/src/flash/nor/bluenrg-x.c b/src/flash/nor/bluenrg-x.c index 6aebdcb31e..3dd09ab3a5 100644 --- a/src/flash/nor/bluenrg-x.c +++ b/src/flash/nor/bluenrg-x.c @@ -94,7 +94,7 @@ static const struct flash_ctrl_priv_data flash_priv_data_spirit3 = { .flash_regs_base = 0x40001000, .flash_page_size = 2048, .jtag_idcode = 0x02027041, - .part_name = "STM32WL33 (SPIRIT3)", + .part_name = "STM32WL33/WL3R (SPIRIT3/3R)", }; struct bluenrgx_flash_bank { diff --git a/tcl/target/bluenrg-x.cfg b/tcl/target/bluenrg-x.cfg index afa1b513b2..ad6f1c43fb 100644 --- a/tcl/target/bluenrg-x.cfg +++ b/tcl/target/bluenrg-x.cfg @@ -20,7 +20,7 @@ set _ENDIAN little if { [info exists WORKAREASIZE] } { set _WORKAREASIZE $WORKAREASIZE } else { - set _WORKAREASIZE 0x5F00 + set _WORKAREASIZE 0x3C00 } adapter speed 4000 --
