Search found 16 matches

by michikite
Tue Oct 11, 2022 12:12 pm
Forum: Hardware
Topic: EMC test mode
Replies: 6
Views: 10384

Re: EMC test mode

did you ever receive an answer to this?
by michikite
Tue Oct 11, 2022 12:08 pm
Forum: General Discussion
Topic: ESP 32 FCC Testing | SDK Test Mode?
Replies: 3
Views: 6310

Re: ESP 32 FCC Testing | SDK Test Mode?

Interested in this as well.
Have you found a solution?
by michikite
Fri May 21, 2021 9:52 pm
Forum: ESP-IDF
Topic: Share I2S clock&WS between both i2s interfaces
Replies: 3
Views: 3344

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
by michikite
Fri May 21, 2021 2:17 am
Forum: ESP-IDF
Topic: Attach interrupt to I2S clock
Replies: 0
Views: 1578

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 = { ...
by michikite
Thu May 20, 2021 12:39 am
Forum: ESP-IDF
Topic: Share I2S clock&WS between both i2s interfaces
Replies: 3
Views: 3344

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...
by michikite
Thu Apr 29, 2021 1:34 am
Forum: ESP32 Arduino
Topic: Erase all Flash contents on sketch upload
Replies: 4
Views: 12755

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
by michikite
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: 4897

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.
by michikite
Wed Apr 28, 2021 7:44 pm
Forum: ESP-IDF
Topic: Parallel I2S: falling edge instead of rising edge clock?
Replies: 1
Views: 1933

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?
by michikite
Fri Apr 23, 2021 1:21 pm
Forum: Hardware
Topic: Four plus channels of audio recording with I2S
Replies: 20
Views: 26098

Re: Four plus channels of audio recording with I2S

Did anyone manage to capture more than 4 audio channels using the parallel camera mode?