• Declaring array of pins
    How to declare an array of pins? I tried the following approach. sbit pins[2]={0x80,0x81} I need to declare them in an array because I have to make multiple changes to pins in my project. My...
  • Declare an initialized array at an absolute pos
    Hi, The following code does not work: static code BYTE InitArray[] _at_ 0x1234 = { 0x01, 0x02, 0x03, 0x04 }; Is there a way to put an initialized array at an absolute position in memory? ...
  • declaration of two dimensional arrays(character
    actually this is in reference to the thread that i have already created about declaring two dimensional arrays I have configured the the model to Xdata and the change that i have made is only of declaring...
  • DECLARING VARIABLES (arrays) IN HEADER FILES
    Hi, There is a Q&A in keil database named "GENERAL: DECLARING VARIABLES IN HEADER FILES" It shows how to declare single variables & initialize them in a header file. When I use the same method...
  • Static array declaration crashes application.
    Hi, I'm using Keil IDE V4.23.00.00.0. If I declare some static array in module A like: volatile static unsigned char MyArray[9] then all works fine. If I declare it like: volatile static...