This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

XMC4700 (PSRAM size is 96 kb)- can not allocate more than 16 kb of stack?

RT os and loader are loaded to PSRAM as well, what to do? Is it possible to load RTOS to normal RAM (even better ROM) in order to allocate more than 16 KB of stack?

Parents
  • You should be able to manage memory usage and placement by the linker via a Scatter File (linker script).

    External memory will need to be brought up in your startup.s code prior to use by the processor for a stack. Consider also that external memory will likely be slower, and thus less desirable for stack usage as it will be a continuous drag on performance.

Reply
  • You should be able to manage memory usage and placement by the linker via a Scatter File (linker script).

    External memory will need to be brought up in your startup.s code prior to use by the processor for a stack. Consider also that external memory will likely be slower, and thus less desirable for stack usage as it will be a continuous drag on performance.

Children