• 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 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...
  • 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...
  • Array of pointers to structures
    I am getting an error 199 "left side of '->' requires a struct/union pointer. I'm not entirely sure why. Maybe it's obvious, but I've been looking at this code for too long: struct test_struct {...