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; }