Skip to content

Commit 3d15042

Browse files
committed
Merge branch 'bugfix/fixed_signal_gap_in_i2s_adc_dac_example' into 'master'
i2s_example: fixed i2s_adc_dac output gap Closes IDFGH-7862 See merge request espressif/esp-idf!20332
2 parents d08898a + 179bda5 commit 3d15042

File tree

1 file changed

+2
-2
lines changed
  • examples/peripherals/i2s/i2s_adc_dac/main

1 file changed

+2
-2
lines changed

examples/peripherals/i2s/i2s_adc_dac/main/app_main.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ void example_i2s_init(void)
7878
.communication_format = I2S_COMM_FORMAT_STAND_MSB,
7979
.channel_format = EXAMPLE_I2S_FORMAT,
8080
.intr_alloc_flags = 0,
81-
.dma_desc_num = 2,
82-
.dma_frame_num = 1024,
81+
.dma_buf_count = 6,
82+
.dma_buf_len = 256,
8383
.use_apll = 1,
8484
};
8585
//install and start i2s driver

0 commit comments

Comments
 (0)