• How to define a big array in external memory
    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...
  • How to define a big array in external memory
    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...
  • why can't const array be in
    const char anarray[5]={1,3,5,7,9}; The above works well. But occupies a lot of mem. const char code anarray[5]={1,3,5,7,9}; Compliled and linked without an error prompt. But works bad....
  • why can't const array be in
    const char anarray[5]={1,3,5,7,9}; The above works well. But occupies a lot of mem. const char code anarray[5]={1,3,5,7,9}; Compliled and linked without an error prompt. But works bad....
  • static const 2D array gives Error L6220E
    Hello, my application is utilizing almost all RAM. Now i need to add a feature and for that i declare a 2D array: static const char * states[][2] = { {"st10","st20"}, {"st11","st21"}, . ...