From cc0b01d098ed4535fc6e507d28f84e606b617f47 Mon Sep 17 00:00:00 2001 From: Matthias Ringwald Date: Thu, 10 Nov 2022 23:00:12 +0100 Subject: [PATCH] esp32: avoid blocking on i2s_write --- .../components/btstack/btstack_audio_esp32.c | 24 ++++++++++++------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/port/esp32/components/btstack/btstack_audio_esp32.c b/port/esp32/components/btstack/btstack_audio_esp32.c index afb1b00ee..ea2151e3f 100644 --- a/port/esp32/components/btstack/btstack_audio_esp32.c +++ b/port/esp32/components/btstack/btstack_audio_esp32.c @@ -160,9 +160,11 @@ static void btstack_audio_esp32_driver_timer_handler(btstack_timer_source_t * ts if( xQueueReceive( btstack_audio_esp32_i2s_event_queue, &i2s_event, 0) == false) break; switch (i2s_event.type){ case I2S_EVENT_TX_DONE: + log_debug("I2S_EVENT_TX_DONE"); btstack_audio_esp32_sink_fill_buffer(); break; case I2S_EVENT_RX_DONE: + log_debug("I2S_EVENT_RX_DONE"); btstack_audio_esp32_source_process_buffer(); break; default: @@ -310,7 +312,12 @@ static void btstack_audio_esp32_sink_fill_buffer(void){ } else { memset(buffer, 0, sizeof(buffer)); } - i2s_write(BTSTACK_AUDIO_I2S_NUM, buffer, DMA_BUFFER_SAMPLES * BYTES_PER_SAMPLE_STEREO, &bytes_written, portMAX_DELAY); + + i2s_write(BTSTACK_AUDIO_I2S_NUM, buffer, sizeof(buffer), &bytes_written, 0); + if (bytes_written != sizeof(buffer)){ + log_error("i2s_write: only %u of %u!!!", (int) bytes_written, (int) sizeof(buffer)); + } + btstack_assert(bytes_written == sizeof(buffer)); } static int btstack_audio_esp32_sink_init( @@ -319,7 +326,7 @@ static int btstack_audio_esp32_sink_init( void (*playback)(int16_t * buffer, uint16_t num_samples)){ btstack_assert(playback != NULL); - btstack_assert(channels == 2); + btstack_assert((1 <= channels) && (channels <= 2)); // store config btstack_audio_esp32_sink_playback_callback = playback; @@ -352,11 +359,9 @@ static void btstack_audio_esp32_sink_start_stream(void){ // state btstack_audio_esp32_sink_state = BTSTACK_AUDIO_ESP32_STREAMING; - // pre-fill HAL buffers - uint16_t i; - for (i=0;i