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.

TMS320F28069 On-Chip RAM Data Storage Capacity

The data sheet states that there is 50k of on-chip 16-bit SARAM for this part.

Can this be taken to mean that I can store up to (about) 50k of unsigned int variables or 25k of  double variables or 12.5k of long double variables either single variables or arrays (not counting array overhead) ?

  • Yeah, that looks right.  

    Do be careful because we sometimes quote bytes (8-bit) and sometimes words (16-bit); It looks like the 50k is words.  

    Be aware that you may want to run critical code sections from RAM instead of FLASH, which may compete with variable storage.  Also the 50k words may not all be contiguous (consult the memory map in the datasheet), so you probably will not be able to have something like a single array of 16-bit integers that has size of 50k.