• Warning if type mismatch
    I have one file in which I use "int16_t x", when I declared it in other file, by mistake I have declared "extern int8_t x". i.e int8_t is used instead of int16_t. But compiler do not generate warning...
  • Types
    How can I transform a number from the type unsigned int to a float? For then to use mathematical functions in this (number_float). Only positive values. Thank you, CHACK
  • 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;...
  • TYPE GEN: TYPE TOO COMPLEX
    This is the error message I get. The projext is for the NXP P80C51MC2. The code size is around 400K bytes. This occurs after I add another instance of a structure to the code. I have about 450 instances...
  • Writing union types to external EEPROM
    Hi all, Doe's anyone know how to write a union type to external parallel EEPROM (AT28C64)? The union type is: typedef union { uchar handle :1; uchar input_status; uchar intrnl_event; uchar...