Part Number: TMS320F28379D
Hi,
I am using F28379d processor. I am working with cla for an application. I have two .cla files in my code.
I notice that when a variable is declared in the second .cla file , it takes the first memory space of cla data memory which has already been used by some other variable in the first cla file:
for example:
File1 : clafile1 .cla
float32 x;
Suppose this variable is stored in 0x9000.
File 2: clafile2.cla
float32 y;
This variable also gets stored in 0x9000.
How can i solve the above issue. it lead to errors in result. the memory location is getting modified by the other cla file.
Thanks,
Mukul