• [C51] : WHY RECURSIVE CALL TO SEGMENT ?
    in c51 i use function pointer : code void (*serial_tabel []) () ={ func_0, func_1, func_2, func_3,func_4 }; static void func_0 (){ strcpy(SPackData,"ngetit 0"); SendPack (); } static...
  • Recursive Call Warning? Why?
    Hi, please can someone try this little code snippet with the C51 compiler and tell me why I am getting a "Linker Warning L13: Recursive Call to Segment Foo1, Caller: Foo2" void foo1(void); void...
  • finding recursive calls
    Has anyone written a tool to help track down recursive function calls? I'm sure many of us have seen the dreaded C51 linker warning above recursive calls. My problem: I just spent 30 minutes sifting...
  • Recursive Function call
    I want to use the recursive function call but i get warning message "Warning L13: Recursive call to segment" though i had declared the funcion as "reentrant". For example my code is like this, ...
  • Function Calls being ignore
    Hi, What would be the reasons for a program ignoring some functions that are supposed to be called. They are defined and they are called several times in the program, but there is one specific section...