• About C51 bank funtion call ?
    Two funtiom. One is char A(char *str1,char *str1),this funtion is in BANK 6. main() is in bank 1; Now main() call A(Astr1,Astr2) have some error. Seem as some parameter has't been pass OK. How...
  • About C51 bank funtion call ?
    Two funtiom. One is char A(char *str1,char *str1),this funtion is in BANK 6. main() is in bank 1; Now main() call A(Astr1,Astr2) have some error. Seem as some parameter has't been pass OK. How...
  • 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;...
  • 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...