Associate II
September 23, 2020
Question
STM32WB55REV6 custom target board BLE wireless stack program issue.
- September 23, 2020
- 10 replies
- 6116 views
I have STM32WB55REV6 based custom target board which contains 512KB flash. I tried to
download FUS and BLE stack, but it seems like did not programmed correctly and Host controller (CM4) is in wait for event from network processor (CM0). Following batch file command sequence and address used for target STM32WB55REV6 as per release note.

SET BIN=STM32WB5x/stm32wb5x_FUS_fw_1_0_2.bin
SET STACK=STM32WB5x/stm32wb5x_BLE_Stack_full_fw.bin
STM32_Programmer_CLI.exe -c port=SWD -fwdelete
timeout 2 >NUL
STM32_Programmer_CLI.exe -c port=SWD -r32 0x20030030 1
timeout 2 >NUL
STM32_Programmer_CLI.exe -c port=SWD -fwupgrade "%BIN%" 0x0807A000 firstinstall=0 -v
timeout 2 >NUL
STM32_Programmer_CLI.exe -c port=SWD -fwupgrade "%STACK%" 0x08057000 firstinstall=0 -v
pauseI have tried with firstinstall = 1 flag too.
I have also attached the log.txt file of executed commands from bat
Request to guide for the same.