Skip to main content
XZhu.1
Associate
April 11, 2022
Solved

How to configure STM32CubeProgrammer to ignore all external RAM address and only download software into internal flash? The external RAM is used temporarily holding some variables value in the software. That is why *.eld file contains these address.

  • April 11, 2022
  • 2 replies
  • 909 views

..

This topic has been closed for replies.
Best answer by Tesla DeLorean

Mark the sections NOLOAD or NOINIT so the linker doesn't put physical data into the .ELF file, or .HEX​

2 replies

Tesla DeLorean
Tesla DeLoreanBest answer
Guru
April 11, 2022

Mark the sections NOLOAD or NOINIT so the linker doesn't put physical data into the .ELF file, or .HEX​

Tips, Buy me a coffee, or three.. PayPal VenmoUp vote any posts that you find helpful, it shows what's working..
XZhu.1
XZhu.1Author
Associate
April 11, 2022

Thank you very much for the help