• Why cant assign a structure pointer to uint8_t pointer in IAR embedded workbench
    Hi guys. I have the following problem. In my code I have to assign a structure pointer to uint8_t pointer so I can write into the structure byte by byte. Both are pointers that point to data of different...
  • Why cant assign a structure pointer to uint8_t pointer in IAR embedded workbench
    Hi guys. I have the following problem. In my code I have to assign a structure pointer to uint8_t pointer so I can write into the structure byte by byte. Both are pointers that point to data of different...
  • 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...
  • Pointer to NULL structure
    I have a structure defined as typedef struct example{ int a; char b; example c; }STRUCT_EG; and I declare a pointer to this structure as STRUCT_EG *Struct_ptr To check whether the pointer...