Phil Schatzmann

Results 245 comments of Phil Schatzmann

How about reading the [documentation](https://github.com/pschatzmann/ESP32-A2DP/wiki/Access-Protection---Authentication) ? Since I am not using any Windows, I can't provide any further help...

Try to add some delay(0) or delay(1)...

In the light that this is working perfectly with the provided default implementation, I tend to assume that you messed something up! What are you doing in the loop ?...

Did you double check that you are not starving the A2DP task with your loop ? Just add some delay calls in your loop. Maybe you better use some callbacks...

Did you check the log it you get the events in time from the IPhone ? With Android and my very old IPhone it's working w/o issues. Maybe you can...

I committed a new version of BluetoothA2DPSinkQueued which might resolve your issues... You will need to run your sketch with this class instead of the simple BluetoothA2DPSink! Since I don't...

Strange: I tested it on Android and there it was working. It seems that the I2S writes are not working, so the queue is never consumed. After i2s_start() is_i2s_active, should...

I guess the access to __is_i2s_active__ needs to by synchronized. Can you check if is good enought to define this variable as volatile ? But it is strange: the in...

That should be good enough. I am still confused from what I see: some critical events seem to be missing. Can you try to add the logic from https://github.com/pschatzmann/ESP32-A2DP/blob/main/examples/bt_music_receiver_status_callback/bt_music_receiver_status_callback.ino I...