cancel
Showing results for 
Search instead for 
Did you mean: 

Issue with writing to addresses using system Bootloader of STM32U5

Deblina
Associate II

Hello ST Community,

I've been troubleshooting an issue with writing to address using system Bootloader on the STM32U5A9J-DK. According to AN3155 Application Note, the data to be written during the 'Write to Memory Command' should be a multiple of 4 bytes. However, during debugging I noticed for the above mentioned device, the data must be a multiple of 16 bytes to be successfully written.

This has raised the question: Is there a way to write to the addresses which are multiple of four?

Any insights or recommendations on how to handle this would be greatly appreciated.

Thank you for your assistance in advance!

1 REPLY 1
TDK
Guru

Flash on the STM32U5 must be programmed 128-bits at a time, per the reference manual. This is because it contains ECC bits.

TDK_0-1702346270700.png

You can write these in 4x32 bit operations.

If you feel a post has answered your question, please click "Accept as Solution".