Part Number: TMS320F280025C
Tool/software: TI C/C++ Compiler
Hi,
I have ported my project from F280041 to F280025c
I have changed my project from legacy COFF to ELF format. But i am facing an issue while creating a data section.
I kept a variable "signature" in a particular flash memory location. But it is not available in .map file.
Samething i tried with legacy COFF, i can able to see the variable in map file. But it is not coming in map file with ELF format and not storing that variable in memory location. How to solve this issue
#define SIGNATURE 0x12345678
#pragma DATA_SECTION(signature,"SignatureLoc");
const UINT32 signature = SIGNATURE;
Thanks
Nikhil