• 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...
  • 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;...
  • 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;...
  • Problem with updating/reading Structure pointer member using functions
    Hi everyone, I want to update a structure member using a function and read it in other functions; anyone helpp? typedef struct { uint32_t Update; }StructUpdate; StructUpdate Objstr, *Objstrpoint...