Question
HAL_I2C_Slave_Receive_DMA
When I use the I2C DMA receive mode, how could I know the data has been received? I found if I use the delay to check the data, it seems it could work, but actually, we don't know when the data will be coming. so there should have a mechanism to tell the user app that the data has been received. I tried to use the call back function (eg. HAL_I2C_SlaveRxCpltCallback() ), but it seems no one could be tracing in.
