Search found 8 matches

by Fluffy_Port
Thu Jun 06, 2024 3:35 pm
Forum: General Discussion
Topic: ESP32 controlled by AT commands limitations
Replies: 3
Views: 708

Re: ESP32 controlled by AT commands limitations

via AT commands over an RS232 interface Are you using Espressif's "AT firmware" or do you (plan to) implement your own UART/"AT" protocol processing on the ESP? I've updated my post, since it was quite on point. Indeed. I've started to work at a new company that has this project, which is kind of i...
by Fluffy_Port
Thu Jun 06, 2024 12:15 pm
Forum: General Discussion
Topic: ESP32 controlled by AT commands limitations
Replies: 3
Views: 708

ESP32 controlled by AT commands limitations

I am currently working on a project where an ESP32-WROVER module is controlled by another microcontroller, specifically an STM32G070 (with fewer capabilities and no RTOS), via AT commands over an RS232 interface. The ESP32 runs with the ESP-AT firmware. My question is related to the limitations of t...
by Fluffy_Port
Sat Nov 18, 2023 12:45 am
Forum: Hardware
Topic: Custom ESP32 board review
Replies: 0
Views: 2390

Custom ESP32 board review

I have just finished the electronic design of my project and would like to request a review from anyone with more experience in PCB design. It's a custom development 2-layer board based on the ESP32-S3-MINI-1 module, but it also includes some additional features: -An ICS-43434 MEMS microphone. -Wire...
by Fluffy_Port
Sat Sep 30, 2023 11:13 pm
Forum: ESP-IDF
Topic: Inputting audio to an ESP32 from an INMP441 I2S microphone: success
Replies: 13
Views: 71551

Re: Inputting audio to an ESP32 from an INMP441 I2S microphone: success

Sorry if this is a necropost, but I found this thread useful, and thought I could add to the discussion. I found this to be a good reference: https://github.com/atomic14/esp32-walkie-talkie/blob/main/lib/audio_input/src/I2SMEMSSampler.cpp#L48 Here, only the lower 11 bits of the 32-bit frame are bei...
by Fluffy_Port
Tue Apr 11, 2023 12:56 am
Forum: ESP32 Arduino
Topic: I2S sample rate issues with INMP441 MEMS
Replies: 0
Views: 1593

I2S sample rate issues with INMP441 MEMS

So I have a simple code to plot the INMP441 audio input into the Serial Plotter. However I find two major issues after testing the code: -The sample rate does not match with the sample rate I set in the i2s_config structure. In fact, is the half of the frequency i set up in the .sample_rate variable...
by Fluffy_Port
Mon Apr 10, 2023 9:40 pm
Forum: ESP32 Arduino
Topic: Issues when adding a real time task
Replies: 4
Views: 2611

Re: Issues when adding a real time task

ESP_Sprite wrote:
Sun Feb 12, 2023 1:49 am
Ah, never mind. I see that your task does not contain an infinite loop. Task functions cannot just return, they either need to run forever (while(1)) or use vTaskDelete(NULL) to delete themselves.
Thanks very much for your help. I thought I replied but it seems it totally went over my head.
by Fluffy_Port
Sat Feb 11, 2023 5:57 pm
Forum: ESP32 Arduino
Topic: Issues when adding a real time task
Replies: 4
Views: 2611

Re: Issues when adding a real time task

I changed it from 2000 to 10000 and I even tried with less. The problem wasn't solved.
by Fluffy_Port
Fri Feb 10, 2023 11:43 am
Forum: ESP32 Arduino
Topic: Issues when adding a real time task
Replies: 4
Views: 2611

Issues when adding a real time task

I had a simple code to my project for the ESP32 that basically SCAN Wifis nad then allows you to connect to any of the networks selecting the SSID and password. Works perfectly until i decied to add a real time task that cheks every 500 ms if the connection is still active and print something (simpl...