Search found 3 matches
- Wed Sep 20, 2017 2:27 am
- Forum: ESP-IDF
- Topic: How to enable I2S0 MCLK output via GPIO0
- Replies: 8
- Views: 14531
Re: How to enable I2S0 MCLK output via GPIO0
Are you sure the noise is in the output on the GPIO and not your measuring system? You can easily get stuff like this if your probes bandwith is too low, you use pigtails off the probe pin, or your ground isn't in the right position. I have measured the WS and BCLK and signal is good,except the MCL...
- Wed Sep 20, 2017 2:21 am
- Forum: ESP-IDF
- Topic: How to enable I2S0 MCLK output via GPIO0
- Replies: 8
- Views: 14531
Re: How to enable I2S0 MCLK output via GPIO0
Are you sure the noise is in the output on the GPIO and not your measuring system? You can easily get stuff like this if your probes bandwith is too low, you use pigtails off the probe pin, or your ground isn't in the right position. Hi ESP_Sprite, I have measure the WS and BCLK at the same time, a...
- Tue Sep 19, 2017 8:01 am
- Forum: ESP-IDF
- Topic: How to enable I2S0 MCLK output via GPIO0
- Replies: 8
- Views: 14531
How to enable I2S0 MCLK output via GPIO0
Hi, As the esp32_technical_reference_manual_en.pdf mentioned that MCLK could output via GPIO0,I try below code: //output clock for I2S0 to CLK_OUT1 //pdf page 67 //(*((int*)PIN_CTRL)) = (*((int*)PIN_CTRL))&0xFFFFFFF0; reg_val = REG_READ(PIN_CTRL); ESP_LOGI(TAG, "PIN_CTRL before:%x", reg_val); REG_WR...