Hello,
I couldn't find where the RAM section from 0x0000 0800 to 0x0000 0AFF belongs to. Anybody can tell me?
In my program, some of the local variables are in this section, and these variables are not function correctly.
For example, the following for loop doesn't work. The program stuck in the loop, no matter how many times the loop executed, the value of variable ‘i’ is still 0. Does anybody have an idea about this? what may cause this kind of problem? Does the data locations cause this issue?
uint8 i;
for (i = 0; i < RSI_FRAME_DESC_LEN; i++)
{
uFrameDscFrame->uFrmDscBuf[i] = 0x00;
}
Thanks.
Xiaowei