I want to use fprintf() from <stdio.h> for debugging but I'm really tight on L2 memory. Since it's only for debugging, I want to place in in external memory. Is there a way to specify how to place runtime libraries in specific memory sections?
Hello,
You can specify this in your linker command file. I suggest you read section 7.5 of the assembly language user's guide for your device family:
http://processors.wiki.ti.com/index.php/Before_asking_for_CGT_support#Compiler_User_Guides
This should have the information you are looking for.
Thanks
ki
-----------------------------------
Don't forget to verify answers to your forum questions by using the green "Verify Answer" button.
Did you read the CCS Forum Guidelines & FAQ? If not, PLEASE read it. If you haven't read it in awhile, please read it again to see if any updates were made.
Having CCSv5 problems? Check out the CCSv5 Troubleshooting Guide
Click here to track an issue. Enter your bug id in the "Find Record ID" box
Thanks. I didn't expect linker details are described in assembly code documents as I program only in C for the processor :)