Part Number: TMS320F280049
I'm a hardware guy fudging my way through some embedded C code (not my area of expertise)
Code Composer Studio Link error #10010 program will not fit into available memory
I'm porting code from a SAMD21g17 (128K FLASH, 16K x8 RAM), to a F280049 (256KB FLASH, 100K x8 RAM)
The project was linking until I added a bit more code. The code still links when building the release version, however the debug version now fails to link with the above error.
If I reduce the heap and stack size from the original 0x300 to 0x100 the project will link.
1) How do I determine a suitable heap and stack size, and will CCS warn me if the heap or stack is too small?
2) I still have a fair bit of code to migrate, it seems like I'm going to need to reconfigure the memory as I'm obviously up against a limit that must be specified somewhere in the project because I was only using a fraction of the memory in the SAMD part and the F280049 has 6x the RAM space. Where would this be defined?
