Skip to main content
AlaaM
Associate III
December 2, 2018
Question

Is there a way to view content of external flash?

  • December 2, 2018
  • 5 replies
  • 1317 views

Hi,

I have an external flash connected to STM32F722 via SPI. Is there a way to view the content of the flash? Maybe with SEGGER J-Flash program?

Thanks

This topic has been closed for replies.

5 replies

Tesla DeLorean
Guru
December 2, 2018

You can do this with the ST-LINK Utilities or STM32 Cube Programmer, but you need to code an external loader that supports your chip and board choices. ​

Tips, Buy me a coffee, or three.. PayPal Venmo (See Profile) Up vote any posts that you find helpful, it shows what's working..
Andreas Bolsch
Lead III
December 2, 2018

If you don't mind using (and building with this patch) openocd:

http://openocd.zylin.com/#/c/4760/

AlaaM
AlaaMAuthor
Associate III
December 4, 2018

I just need a tool, without coding, to just view the content of the flash. Thanks I'll try openocd. Any other simpler ideas are welcome.

Tesla DeLorean
Guru
December 4, 2018

Unless the external memory appears within the processors memory space this isn't going to magically happen. The processor isn't aware of what and how you have things attached to it.​

Tips, Buy me a coffee, or three.. PayPal Venmo (See Profile) Up vote any posts that you find helpful, it shows what's working..
Tesla DeLorean
Guru
December 4, 2018

Have code in your own app dump the content to a serial port. Create a small debug monitor to allow you to selectively dump regions of it, or upload /download via X-Modem or whatever. ​

Tips, Buy me a coffee, or three.. PayPal Venmo (See Profile) Up vote any posts that you find helpful, it shows what's working..