• STM32 boolean types?
    Hi, i'm using Keil Evaluation Boards to program my STM32F4Discovery. I was wondering, why can't I use boolean or bit type data? Or it's because i'm using the Evaluation version? I want to use "true"...
  • STM32 boolean types?
    Hi, i'm using Keil Evaluation Boards to program my STM32F4Discovery. I was wondering, why can't I use boolean or bit type data? Or it's because i'm using the Evaluation version? I want to use "true"...
  • BOOLEAN VARS MAKE MY FW FAIL ?
    Hi people, I'm a bit stuck with a serious problem at work using the Keil C51. I've modified a FW that was working fine, I add many functions, but they only call once as long as the EEPROM is...
  • BOOLEAN VARS MAKE MY FW FAIL ?
    Hi people, I'm a bit stuck with a serious problem at work using the Keil C51. I've modified a FW that was working fine, I add many functions, but they only call once as long as the EEPROM is...
  • Why are dynamically-sized arrays implemented as malloc()?
    I'm working on a project that should not use a Heap. In the process of revising my code for this, I've discovered that dynamically-sized arrays, e.g. uint8_t my_array[MIN(input_size, MAX_SIZE)]; are...