Search found 51 matches

by marclee
Wed Dec 21, 2022 9:21 pm
Forum: Hardware
Topic: Setting efuse to ESP32-S3 to enable DFU on boot press.
Replies: 24
Views: 14234

Re: Setting efuse to ESP32-S3 to enable DFU on boot press.

devlat wrote: Is it possible that your ESP32-S3 chip was manufactured before Date Code 2219 ?

In my case the date code is 2219 and ESP32-S3 does not appear as DFU USB device as described above.
by marclee
Thu Nov 24, 2022 2:51 pm
Forum: ESP-IDF
Topic: CORRUPT HEAP in WiFi mode WIFI_MODE_APSTA
Replies: 0
Views: 1411

CORRUPT HEAP in WiFi mode WIFI_MODE_APSTA

I'm posting this problem in a new post, even I think it could be related to the problem I posted some weeks ago: https://www.esp32.com/viewtopic.php?f=13&t=30038 Configuration: * ESP-IDF v5.0-rc1 * ESP32-C3 * Heap debugging is activated in comprehensive mode. * WiFi is in mode WIFI_MODE_APSTA * Scan...
by marclee
Fri Nov 18, 2022 10:02 am
Forum: ESP-IDF
Topic: CORRUPT HEAP after reconnect
Replies: 22
Views: 8670

Re: CORRUPT HEAP after reconnect

pawcuq wrote:
Wed Nov 16, 2022 6:03 pm
Did you manage to figure solution for this problem? Same here...

Unfortunately not.
by marclee
Tue Nov 15, 2022 4:08 pm
Forum: Hardware
Topic: ESP32-S3: Unable to use DFU
Replies: 4
Views: 2154

Re: ESP32-S3: Unable to use DFU

So why don't you tell us how to get it working?
by marclee
Tue Nov 15, 2022 8:06 am
Forum: Hardware
Topic: ESP32-S3: Unable to use DFU
Replies: 4
Views: 2154

Re: ESP32-S3: Unable to use DFU

I have the same problem here. And the same problem is also described there: https://esp32.com/viewtopic.php?f=12&t=26795 It seems that nobody has solved the problem yet. Is there anybody from Espressif staff who could help? This is my code I used to burn the efuse bit: const esp_efuse_desc_t efuse_U...
by marclee
Mon Nov 14, 2022 4:50 pm
Forum: Hardware
Topic: Setting efuse to ESP32-S3 to enable DFU on boot press.
Replies: 24
Views: 14234

Re: Setting efuse to ESP32-S3 to enable DFU on boot press.

I have the same problem here. After burning eFuse Bit USB_PHY_SEL , ESP32-S3 doesn't show up any more at the USB port of the PC. ESP32-S3-WROOM-1-N8R8 ESP-IDF v5.0-beta1-829-g3f2f35bd5e The UART console shows that ESP32-S3 is in DFU mode: ESP-ROM:esp32s3-20210327 Build:Mar 27 2021 rst:0x1 (POWERON),...
by marclee
Sat Oct 29, 2022 5:16 pm
Forum: ESP-IDF
Topic: CORRUPT HEAP after reconnect
Replies: 22
Views: 8670

Re: CORRUPT HEAP after reconnect

mbratch wrote:
Sat Oct 29, 2022 4:53 pm
Yes your code logs every event. It doesn't specifically handle the correct specific disconnect event however.
As the smartphone keeps staying on channel 1, in case of a channel switch a disconnect command would never reach the ESP32.

Thank you for your efforts.
by marclee
Sat Oct 29, 2022 4:38 pm
Forum: ESP-IDF
Topic: CORRUPT HEAP after reconnect
Replies: 22
Views: 8670

Re: CORRUPT HEAP after reconnect

Just as some added information... I tried your code on my ESP32 I'm running ESP-IDF 4.4.2. I am using the default sdkconfig settings. If you want to figure out a bug in ESP-IDF v5.0, you need to use ESP-IDF v5.0, not ESP-IDF v4.4.2. ... Smartphone is not capable to switch channel during a connectio...
by marclee
Fri Oct 28, 2022 9:30 am
Forum: ESP-IDF
Topic: CORRUPT HEAP after reconnect
Replies: 22
Views: 8670

Re: CORRUPT HEAP after reconnect

The frequent cause of corrupt heaps is the lack of stack given to FreeRTOS task, getting array/list item by index out of its range or calling function or object which pointer is null. Could you please check stack first? Which task are you talking about? Have you read my source code? Please have a l...
by marclee
Wed Oct 26, 2022 9:04 am
Forum: ESP-IDF
Topic: CORRUPT HEAP after reconnect
Replies: 22
Views: 8670

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...