We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
Hi,
I am using REALVIEW to develop my project with STR912FAW44 microcontroller. My issue is the same as the post below. http://www.keil.com/forum/docs/thread8004.asp
I want to define a big array in external SRAM. Does anybody have examples and show me how to do that? Greatly appreciate any suggestions.
Thanks
Thank you very much for your info. I try it as followed.
1. Configure the EMI interface in the startup.s. 2. Define a variable in the main program. unsigned short *test __attribute__((at(0x3c000900))); 3. Write a value to the test variable *(u16*)test = 0x0010;
However, it doesn't work. Could you please help me figure out what I miss?
Thanks for your help.
However, it doesn't work.
How do you know that? How do you think anybody can help you if you keep all the important information to yourself?
Interesting thing with poiters.
Do you want to store the pointer in external memory, or do you want the pointer to point into the external memory?
"Do you want to store the pointer in external memory, or do you want the pointer to point into the external memory?"
Or both?