• 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
  • union/struct problem
    Hello, it works in devcpp (as c project) but not working in Keil. What is my fault. output must be "12345" but it is not. typedef union { u8 Reg8[5]; struct { u8 Select; u32 Value32; ...
  • struct & union definations
    I am using struct in my code. with LPC1317. Now if I write: typedef struct { uint32_t f; union { uint32_t ADR[3]; struct { uint32_t ADR1; uint32_t ADR2; uint32_t ADR3; }; // warning...
  • 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