Erich,
Imagine the data below ( const unsigned char texto[4][128] ), if I declare this way, this data will be allocated in the SRAM, I do not want this to happen, I need this data to be allocated in Flash. In Codewarrior I used the pragma and this data was allocated in ROM.
// Codewarrior ========================================
#pragma CONST_SEG ROM
/ * "in here I put all the const that I needed to be allocated in ROM" * /
const unsigned char texto[4][128] = { .... };
#pragma CONST_SEG DEFAULT
//==================================================
How to allocate " const unsigned char texto[4][128] " in Flash and not in SRAM using MCUXpresso?
I'm using MKE16Z64VLF4
"data"
const unsigned char texto[4][128] = { {0xFF, 0xFF, ... }, {0xFF, 0xFF, ....}, {0xFF, 0xFF, ...}, {0xFF, 0xFF, ...} };