• Why variables wtth prefix of code are put in CONST area by Keil
    Hi , I have one question for keil compiler. Originally, in the compile result for my project, CONST size is 0 and all of variables with prefix of code are put in CODE area by compiler. But...
  • Why variables wtth prefix of code are put in CONST area by Keil
    Hi , I have one question for keil compiler. Originally, in the compile result for my project, CONST size is 0 and all of variables with prefix of code are put in CODE area by compiler. But...
  • why would a function call Reset_Handler PROC
    I have a simple struct. typedef struct { void (*write)(void); char (*request)(OBD_device*); } OBD_carMake; and a call to a function like so carMake->request(device); It was working fine...
  • why would a function call Reset_Handler PROC
    I have a simple struct. typedef struct { void (*write)(void); char (*request)(OBD_device*); } OBD_carMake; and a call to a function like so carMake->request(device); It was working fine...
  • Wrong coverage on header files with static inline functions
    The device has some memory mapped peripherals and we have our HAL written as header files with static inline functions that provide access to these peripherals. The unit tests run on the simulator and...