• Debugging of an anonymous union
    Hello, we have a Problem with the debugger in uVision5.
  • Struct in union
    Hi I have some problems with struct inside a union This is my code. union{ unsigned char id_byte[2]; struct { unsigned char DLC:4; unsigned char RTR:1; unsigned int identifier:11; }del_element;...
  • UNION and STRUCT
    I'd like to make a definition of union in one file and call it from others. Union needs to consists structures in it. Is it possible? Thank you, Goran
  • Bitfield inside Union
    Hi, sorry i know, this question is an evergreen. I have 320 bitfield variables, which i want to access as single Bit's on one hand, and as a field of 40 byte via RS-232 on the other hand. Yes i know...
  • Structures inside a union
    I did read some threads on the forum but could not solve my problem. I want to make a union of to data sets (a structure and an array). My code is as follows: #define COMMS_BUFFER_SIZE 80...