This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Compiler/TMS320F28069M: Modify Linker File for C stdio

Part Number: TMS320F28069M

Tool/software: TI C/C++ Compiler

How can I modify this example linker file to accommodate including stdio.h ? The issue I'm getting is with the stack size. I've tried changing it in the project properties, but it's still complains.

  • Sounds like increasing the stack has caused M1SARAM to get too full. Try to move somethings out of M1SARAM in the other RAMs. The Memory Allocation view in CCS can be a nice way to spot available sections.

    Here's a wiki page that has some helpful linker file information: processors.wiki.ti.com/index.php/C28x_Compiler_-_Understanding_Linking

    Whitney