• typedef & optimisation
    In the book "TCP/IP Lean" [1], the author states: "I have used #define in preference to typedef because compilers use better optimisation strategies for their native data types." Is this true of...
  • Circular Typedefs
    Structs can easily have circular references: struct ATag { struct BTag* pB; }; struct BTag { struct ATag* pA; }; Can the same thing be done with typedefs? typedef struct { BType* pB; } AType;...
  • Question about Arduino Due.
    Hi all, I recieved an arduino due recently. i had my fun in the Arduino IDE, but i am seeing its limits. i want to move up to a more powerfull language, LabVIEW. but to do that i need to get uVision...
  • conflicts due to 2 timers
    Hi I m using two timers in my program timer0 to insert delay in the program and timer1 for initializing the serial port........ bothtimers work fine in the same program but once they are in the...
  • Length of a typedef enum
    I am trying to pass the length of a typedefinition to an integer by using the sizeof function. At the moment I only get the value 4 passed back no matter the number of items are in the typedef. This...