Part Number: TMS320F280039C
Hi Champ,
I am asking for my customer.
If we configure one location (LSRAM/ FLASH sector) with EXEONLY secure, and that location should only for running the code.
(1). What if we have a function located on that EXEONLY secure memory and the function is called by others location, what will we get the result ?
int function (int a, int b)
{
int c = a + b;
return c;
}
(2). Continue (1) question, if we get the calculated result c, could we pass the value to another variable (d = c) which is also declared on the same EXEONLY secure memory ?
Regards,
Johnny