• WARNING C258 mspace ignored
    this "extract to show" compiles with the warning. I definitely do not want the overhead from mspace ignored. What am I missing in making this mspace dependent i.e VFcPtr always code. here void VFDcdatLgt...
  • WARNING C258 mspace ignored
    this "extract to show" compiles with the warning. I definitely do not want the overhead from mspace ignored. What am I missing in making this mspace dependent i.e VFcPtr always code. here void VFDcdatLgt...
  • Union + Struct - doubts
    Good moorning, I am trying to create a struct of date of this style: //Struct 1 union{ struct{ union{ struct{ bool interrupt_receive; bool fifo_mode; bool enable; bool bits_14_mode; ...
  • 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
  • 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;...