• 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...
  • Warning L13: recursive call to segment
    Hello, I have the following piece of code: /*-------------------------------------------------------------------------*/ extern byte i2c_swi2c_Write( byte address, byte *msgw, byte len ) /*---...
  • WARNING L13: RECURSIVE CALL TO SEGMENT
    I am receiving WARNING "L13: RECURSIVE CALL TO SEGMENT" when I try to access a CROMDATA array from the same file. That means CROMDATA variable and its usage are in the same .c file. Can anybody...
  • 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...
  • 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...