• typedef union problem
    I have a problem with typedef union as parameter for a function-call. definition of the typedef union uParameter { byte bByte; // 8 bit unsigned int16 iInt16; // 16 bit signed int32 iInt32;...
  • Typedef union problem
    Hello! I have a typedef union and variable: typedef union int2char{unsigned char high_byte; unsigned char low_byte; unsigned int int_byte; } int2char; int2char dac_value; When i assign...
  • typedef union problem
    I have a problem with typedef union as parameter for a function-call. definition of the typedef union uParameter { byte bByte; // 8 bit unsigned int16 iInt16; // 16 bit signed int32 iInt32;...
  • Typedef union problem
    Hello! I have a typedef union and variable: typedef union int2char{unsigned char high_byte; unsigned char low_byte; unsigned int int_byte; } int2char; int2char dac_value; When i assign...
  • External Funtion Type
    This works: extern char Fn1( char, char ); extern char Fn2( char, char ); extern char Fn3( char, char ); This causes a lot of linker errors. typedef char FnT( char, char ); extern FnT Fn1,Fn2,Fn3;...