• 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...
  • Declaring (initializing) array without size
    Hi! I'm having some problems declearing an array. I am trying to make an array that contains messages that I will later display on an LCD display. I am using a 2D char array, but I don't want to specify...
  • Writing to flash without debugger crashes
    Hi, I wrote a program, where some data is written to the internal flash of a stm32f4. If I am debugging everything works fine, but if the controller runs without the debugger, the data is not written...
  • New array declaration
    Hi everyone can someone tell me how to declare a array of 20 characteres. I wanto to use this array to fill with a string and then display it in a LCD. Also I wanto to use a pointer to read or write...
  • 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...