• witch is better
    Actually I have to receive the 3-bytes thorough serial link and then these three bytes are then converted into paralell. I use 74245 buffer and then use three 74LS373 latches....But the problem is that...
  • which is better
    I want to know which is better Flash MAgic or FLIP for interfacing with 89C51 ... does Flash Magic for Atmel 89C51 microcontroller
  • Is there a better way to solve this requirement
    I have a different objects, like this: typedef struct { int32_t info ; } item1_properties_t ; and typedef struct { int32_t info ; } item2_properties_t ; the objects are held in containers...
  • anyone have a better method
    when I have to catch accesses to foo() and some pesky valid call happens all the time, in code like this: void foo(BYTE x} [ ...... ] foo(47); // one of many that might be the culprit foo(12);...
  • which is better to use
    Hi, Which is better to use #define TRUE 1 #define FALSE 0 if(a==TRUE) { } if(a!=FASE) { } whether both makes any difference in code size or speed? Thanks,