• Problem with structures containing structures
    Hello, I have a problem with the following structure declaration: typedef struct { HDEntriesTYPE HDWindowStartSTRUCT; } actualPlayerStatusTYPE; typedef struct { unsigned long StartClusterUL;...
  • Structures problems
    When used a structure inside a structure while both of them being called with pointers the chip doesn't recognize any kind of variable types except int.
  • structures
    so lots of threads on this forum say you must not care about how the compiler puts things into structures with alignment and padding and stuff then we look at example code with structures used to...
  • Structures
    In my application I have a number of different structure variables. In all cases the members are unsigned char. I pass the structure to a function via a pointer where the various structures may have...
  • Problem with more member in a structure
    Hi there, I'm using STM32F103 with Keil ver 4.72 I defined a structure like this: typedef struct { uint16_t X; uint16_t Y; uint16_t Width; uint16_t Height; uint16_t BackColor; uint16_t TextColor;...