Part Number: TMS320F28388D
Hello Ti,
Can we place two #pragmas at the beginning of a function, so that the function can we loaded into 2 RAM locations:
For example:
#pragma CODE_SECTION(counterforcpu, "ramfuncs");
#pragma CODE_SECTION(counterforcpu, "ramfuncsforcpu2");
void counterforcpu(void)
{
gCounterforcpu++;
}
Would this load the function into two different RAM locations?