• is there inline funtion in keil c51
    i want to use inline function like in c++ language. how to do in keil c or it's not support? use #define to simulate ?
  • 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;...
  • Need Help on GPIO funtions of LPC2378
    Hi, I am new to ARM processor and i am working on Kit MCB2300 (LPC 2378 Processor) . I am having a problem of sending the data on entire port like in other 8 bit microcontrollers(AT89c51). So what...
  • Banked calls
    Excuse my limited knowledge on this... For proprietary reasons I must split my 8051 code so I can supply one section to a vendor who will perform testing on the product. I broke the code into Banks but...
  • If non-reentrant funtion is interrupted, what wil happen?
    Dear everyone: If non-reentrant funtion is interrupted ,will it cause error? In my non-reentrant funtion defined some local variables, if it is interrupted, non-reentrant funtion will not preserve...