We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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