• 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....
  • array defining
    i want to send 300 constant values to an array and i defined it in this way code unsigned int a[]= '' 936, 956, 1100, 1208, 1150, 986''; // like these all 300 values but keil software gives error...
  • Other const in const structure definition
    Hi all, I have a small issue with a definition with arm C compiler regarding constants. In an assembly code I define a constant with : Version EQU 0x01000100 In my main C file I import this...
  • 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"}, . ...