Other Parts Discussed in Thread: C2000WARE,
My first try is to put most of my FFT and other processing code into RAM (for speed), so looking for proper linker file.
- Trying to add my code to one of the matching FFT example projects (seems to be a good fit) "rfft_adc_f32_windowed",
but under project properties "General->Linker command file:", it references a file not available for my part.
In directory "\ti\c2000\C2000Ware_4_03_00_00\device_support\f28004x\common\cmd", there doesn't appear to be an appropriate cmd file for this type of project.
What is the proper cmd linker file for a proper FFT example? - The TMS320F280049C is supposed to have 100KB RAM, but the generic linker file does not seem to reference enough RAM space in there.
What am I misunderstanding?
Even if looking at the "\ti\ccs1220\ccs\ccs_base\c2000\include\280049C_RAM_lnk.cmd",
there isn't enough RAM listed:
PAGE 0 :
/* BEGIN is used for the "boot to SARAM" bootloader mode */
BEGIN : origin = 0x000000, length = 0x000002
RAMM0 : origin = 0x0000F5, length = 0x00030B
RAMLS0 : origin = 0x008000, length = 0x000800
RAMLS1 : origin = 0x008800, length = 0x000800
RAMLS2 : origin = 0x009000, length = 0x000800
RAMLS3 : origin = 0x009800, length = 0x000800
RAMLS4 : origin = 0x00A000, length = 0x000800
RESET : origin = 0x3FFFC0, length = 0x000002
PAGE 1 :
BOOT_RSVD : origin = 0x000002, length = 0x0000F3 /* Part of M0, BOOT rom will use this for stack */
RAMM1 : origin = 0x000400, length = 0x000400 /* on-chip RAM block M1 */
RAMLS5 : origin = 0x00A800, length = 0x000800
RAMLS6 : origin = 0x00B000, length = 0x000800
RAMLS7 : origin = 0x00B800, length = 0x000800
RAMGS0 : origin = 0x00C000, length = 0x002000
RAMGS1 : origin = 0x00E000, length = 0x002000
RAMGS2 : origin = 0x010000, length = 0x002000
RAMGS3 : origin = 0x012000, length = 0x002000
}
thanks, Dan