• 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...
  • AC6 peripheral register structural access issues
    Hi, I have trouble accessing registers with structures which work with AC5. Below is the structure definition. /*---------------------------------------------------------------------------*/ /*...
  • AC6 peripheral register structural access issues
    Hi, I have trouble accessing registers with structures which work with AC5. Below is the structure definition. /*---------------------------------------------------------------------------*/ /*...
  • accessing array of ptr in the structures
    i've declared a structure as typedef struct elem { int a; void *b[20]; }e; how can i access the array of (void) pointer inside a structure??? e.b ??? - is this correct manner of accessing...