• Accessing structure pointer members
    Hi all, For some reason, I cannot access the structure members if I use struct pointers. eg: typedef struct { int member1; }structure_t; structure_t structure, *structure_ptr; int...
  • Accessing structure pointer members
    Hi all, For some reason, I cannot access the structure members if I use struct pointers. eg: typedef struct { int member1; }structure_t; structure_t structure, *structure_ptr; int...
  • defining an array of pointers to structure members generates compiler error
    espression must have a constant value i have a static struct variable having struct members and have to access this members on change of a count. so instead of using a switch case statement to load...
  • defining an array of pointers to structure members generates compiler error
    espression must have a constant value i have a static struct variable having struct members and have to access this members on change of a count. so instead of using a switch case statement to load...
  • 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;...