Dear,
I am trying to initialize a variable located in SDRAM.
However, it seems that the variable isn't initialized as "0" value.
Could you let me know how to initialize it located in SDRAM?
<map file>
<debug mode>
Declare it static. Those are initialized to 0, unless it is a pointer. Then it is initialized to NULL.
Generally you put create
static int firstTime;
if (firstTime==0) {
// Clear buffers
}