• 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...
  • 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, ...
  • mem_test() and mem_set() recursive calls?
    Hi everyone, I'm using the RL-TCPNet in standalone mode (i.e. without a RTOS) and DHCP is enabled. I call the mem_test() function to determine if the DHCP-assigned IP address is valid. When I generated...
  • C51: L48: IGNORED RECURSIVE CALL
    I just migrated a project from Keil 3 to Keil 5 (C51 = V9.56.0.0 & LX51 4.66.66.0 I get the following (new) warnings: *** WARNING L48: IGNORED RECURSIVE CALL CALLED: _SMBUS_SET_PACKET_DATA/SMBUS...
  • [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...