Search found 566 matches

by boarchuz
Sat Nov 19, 2022 3:32 am
Forum: ESP-ADF
Topic: I2S sound recorder using only ULP - Possible?
Replies: 7
Views: 115545

Re: I2S sound recorder using only ULP - Possible?

The ULP cannot access I2S or SDMMC peripherals, so you would need to do this all in software. This is not a trivial task, if even possible given the limited speed and memory of the ULP. Light sleep might be an option, given you have 5mA to work with. I'm not familiar with I2S but if it can operate i...
by boarchuz
Sat Oct 29, 2022 3:03 pm
Forum: ESP-IDF
Topic: Help with log messages
Replies: 2
Views: 1640

Re: Help with log messages

https://github.com/espressif/esp-idf/is ... 1283371857

In your backtrace, "operator new(unsigned int)" leads to abort, which is a strong indication that you're out of memory.
by boarchuz
Sat Oct 29, 2022 2:52 pm
Forum: ESP-IDF
Topic: CORRUPT HEAP after reconnect
Replies: 22
Views: 8628

Re: CORRUPT HEAP after reconnect

marclee wrote:
Fri Oct 28, 2022 9:30 am
Is there anybody from Espressif staff who is willing to look after this serious bug?
Someone has been assigned recently. Keep an eye on the issue on GitHub.
by boarchuz
Sat Oct 29, 2022 2:49 pm
Forum: ESP32 Arduino
Topic: Simple button counter issue
Replies: 2
Views: 1930

Re: Simple button counter issue

mostlymat wrote:
Thu Oct 27, 2022 3:20 am

Code: Select all

    counter = counter ++;
This is undefined behaviour (https://stackoverflow.com/questions/949 ... d-behavior).
by boarchuz
Mon Oct 24, 2022 11:28 pm
Forum: ESP-IDF
Topic: CORRUPT HEAP after reconnect
Replies: 22
Views: 8628

Re: CORRUPT HEAP after reconnect

Can anybody confirm that bug? I commented in your GitHub issue, I'm getting it too. In my case the ESP32 provides an AP and HTTP server for configuring WiFi connection and so forth - pretty typical scenario - and when the ESP32 does a WiFi scan for access points, my laptop often disconnects and rec...
by boarchuz
Fri Sep 23, 2022 6:26 am
Forum: ESP-IDF
Topic: Using OTA with multi-partition application
Replies: 6
Views: 3743

Re: Using OTA with multi-partition application

If these files are so tightly coupled with the firmware, embedding them in the firmware might be more suitable than a separate SPIFFS partition. Does the firmware function properly without the files? If not, I would suggest they must be embedded in the binary. Are they ever altered, except in the ca...
by boarchuz
Mon Sep 19, 2022 4:10 am
Forum: ESP32 Arduino
Topic: I2C ULP
Replies: 2
Views: 2147

Re: I2C ULP

What happens if you remove esp_sleep_enable_ulp_wakeup or I_WAKE? Suspecting the repeated initialisation while running is breaking the I2C or ULP.
by boarchuz
Thu Sep 15, 2022 9:34 am
Forum: ESP-AT
Topic: Problem sending data in json format using at+httpclient in put
Replies: 2
Views: 2506

Re: Problem sending data in json format using at+httpclient in put

MVillars wrote:
Thu Sep 15, 2022 8:33 am
... bca\"\,\"account_name\":\"name"\,\"met ...
Some of these escape sequences don't look right. Double check the quoted part above.

Use something like https://webhook.site to check that the server is receiving what you expect.
by boarchuz
Tue Sep 13, 2022 2:59 pm
Forum: Hardware
Topic: esp32 pico brownout level
Replies: 2
Views: 2116

Re: esp32 pico brownout level

It will be exactly the same. It's still the same ESP32, just packed into a tiny module. It will specify a higher minimum voltage due to the integrated flash, which typically has a higher minimum than the ESP32 itself. The same will be true of WROOM modules, for example. So there will be a ~500mV win...
by boarchuz
Wed Aug 31, 2022 7:48 am
Forum: ESP-IDF
Topic: WiFi switch without disconnect.
Replies: 11
Views: 6519

Re: WiFi switch without disconnect.

Unfortunately no, at the moment I must disable the Wi-Fi network everytime I want to switch modality. I hope someone will help me to clarify how to do this. Do all of the initialisation once, and I would include configuring your AP in this. You can create your AP netif something like this: ESP_ERRO...