xdc_runtime_Text_charTab__A is taking up about 5K of flash in my const section. What is it and how do I get rid of it? I attached my cfg and .map files
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.
xdc_runtime_Text_charTab__A is taking up about 5K of flash in my const section. What is it and how do I get rid of it? I attached my cfg and .map files
David,
in your Boot.cfg there are two commented out statements that include sizing.cfg.xs and then set up a minimal configuration. I can't tell which version of SY/BIOS you are using, so it's possible that commenting out those won't work. In that case you can add the following statements that deal with that array:
/* Error, Assert, Log strings are not loaded on the target */
var Text = xdc.useModule('xdc.runtime.Text');
Text.isLoaded = false;
Here is the explanation for that config parameter: http://rtsc.eclipse.org/cdoc-tip/xdc/runtime/Text.html#is.Loaded