• array of structs with fixed content
    Hi you all. I need to creat an LCD based user interface. Therefore , I decided to use a struct for each LCD menu: typedef struct Menu { char lcd_first_line[16]; char lcd_second_line[16]; struct...
  • array of structs with fixed content
    Hi you all. I need to creat an LCD based user interface. Therefore , I decided to use a struct for each LCD menu: typedef struct Menu { char lcd_first_line[16]; char lcd_second_line[16]; struct...
  • uVision Debugger does not display the content of arrays correctly
    When using arrays and structs uVision debugger shows all elements as 0x00 even though the data is correct. I can verify the data is correct by outputing the array or structs contents to the STDIO. ...
  • uVision Debugger does not display the content of arrays correctly
    When using arrays and structs uVision debugger shows all elements as 0x00 even though the data is correct. I can verify the data is correct by outputing the array or structs contents to the STDIO. ...
  • Question about linker control file content
    What's the difference between ?PR?TEST and ?PR?*?TEST in the linker control file. ("TEST" is the name of *.c file) I remember that ?PR?*?TEST means all segments in the TEST file, right? But how about...