Hello, I have the following piece of code:
/*-------------------------------------------------------------------------*/ extern byte i2c_swi2c_Write( byte address, byte *msgw, byte len ) /*-------------------------------------------------------------------------*/ { ASSERT( ( address >= 0 ) && ( address <= 255 ) ); ASSERT( msgw != NULL ); ASSERT( ( len > 0 ) && ( len <= 255 ) ); return ( I2cCommand( address, len, 0, msgw, NULL ) ); }
static byte I2cCommand( byte Address , byte NrSend , byte NrRec , byte *SendBuffer , byte *RecBuffer );
Hello, I've finally found the recursion myself. It was not easy to explain, but also not easy to find... :-) No need to react anymore... Rgds, Geert