From 6e50e6e39870c181d5f3d129b9f50dd7a379932f Mon Sep 17 00:00:00 2001 From: pschatzmann Date: Sat, 21 Sep 2024 12:49:02 +0200 Subject: [PATCH] LOG dma_frame_num --- src/AudioI2S/I2SESP32V1.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/AudioI2S/I2SESP32V1.h b/src/AudioI2S/I2SESP32V1.h index 63a652b1e..2e8fd87f5 100644 --- a/src/AudioI2S/I2SESP32V1.h +++ b/src/AudioI2S/I2SESP32V1.h @@ -202,6 +202,7 @@ class I2SDriverESP32V1 { int size = cfg.buffer_size * cfg.buffer_count; int frame_size = cfg.bits_per_sample * cfg.channels / 8; if (size > 0) result.dma_frame_num = size / frame_size; + LOGI("dma_frame_num: %d", result.dma_frame_num); return result; }