Search found 16 matches
- Tue Oct 11, 2022 12:12 pm
- Forum: Hardware
- Topic: EMC test mode
- Replies: 6
- Views: 10761
Re: EMC test mode
did you ever receive an answer to this?
- Tue Oct 11, 2022 12:08 pm
- Forum: General Discussion
- Topic: ESP 32 FCC Testing | SDK Test Mode?
- Replies: 3
- Views: 6556
Re: ESP 32 FCC Testing | SDK Test Mode?
Interested in this as well.
Have you found a solution?
Have you found a solution?
- Fri May 21, 2021 9:52 pm
- Forum: ESP-IDF
- Topic: Share I2S clock&WS between both i2s interfaces
- Replies: 3
- Views: 3556
Re: Share I2S clock&WS between both i2s interfaces
Thanks for the tip!
I got it to work.
The i2s driver sets the clock pin to OUTPUT.
changed it to input and output and mapped it to the second interface using the gpio matrix
I got it to work.
The i2s driver sets the clock pin to OUTPUT.
changed it to input and output and mapped it to the second interface using the gpio matrix
- Fri May 21, 2021 2:17 am
- Forum: ESP-IDF
- Topic: Attach interrupt to I2S clock
- Replies: 0
- Views: 1660
Attach interrupt to I2S clock
Is it possible to attach an interrupt to the i2s ws clock? I tried the below, but it never gets called. void IRAM_ATTR test_isr(void *arg) { printf("TEST"); } #define SAMPLE_RATE 8000 #define MIC_SAMPLES_BUF 256 #define DMA_BUF_SPEAKER_CNT 5 void i2s_init_test(void) { i2s_config_t i2s_config_TX = { ...
- Thu May 20, 2021 12:39 am
- Forum: ESP-IDF
- Topic: Share I2S clock&WS between both i2s interfaces
- Replies: 3
- Views: 3556
Share I2S clock&WS between both i2s interfaces
I set up a TX i2s interface on my esp32 and can see the master clock and left-right clock fine on my osciloscope. I also set up a a second i2s RX interface with its own clock. Now I was wondering about two things: - Can I re-use the TX clock pins to drive both i2s interfaces ? - Can I read those clo...
- Thu Apr 29, 2021 1:34 am
- Forum: ESP32 Arduino
- Topic: Erase all Flash contents on sketch upload
- Replies: 4
- Views: 13215
Re: Erase all Flash contents on sketch upload
Not sure if there is a more convenient way (maybe platformIO), but you could use:
https://github.com/espressif/esptool
https://github.com/espressif/esptool
- Thu Apr 29, 2021 1:23 am
- Forum: ESP32 Arduino
- Topic: Is it possible to use ESP-NOW and conenct to a WiFi network
- Replies: 4
- Views: 5160
Re: Is it possible to use ESP-NOW and conenct to a WiFi network
are you on the same wifi channel for esp-now and normal wifi?
I have not tried it myself, but I think that is a requirement. Then it should work.
I have not tried it myself, but I think that is a requirement. Then it should work.
- Wed Apr 28, 2021 8:01 pm
- Forum: ESP32 Arduino
- Topic: Is it possible to use ESP-NOW and conenct to a WiFi network
- Replies: 4
- Views: 5160
- Wed Apr 28, 2021 7:44 pm
- Forum: ESP-IDF
- Topic: Parallel I2S: falling edge instead of rising edge clock?
- Replies: 1
- Views: 2039
Parallel I2S: falling edge instead of rising edge clock?
Is there a way to tell the esp32 to sample data at the falling edge of the clock instead of the rising edge, when sampling parallel data through i2s camera mode?
- Fri Apr 23, 2021 1:21 pm
- Forum: Hardware
- Topic: Four plus channels of audio recording with I2S
- Replies: 20
- Views: 27284
Re: Four plus channels of audio recording with I2S
Did anyone manage to capture more than 4 audio channels using the parallel camera mode?