Search found 15 matches

by Xtensa2C
Tue Sep 06, 2022 6:56 am
Forum: ESP-IDF
Topic: MQTT IDF Bug? esp_mqtt_client_enqueue sending 0 bytes
Replies: 2
Views: 1142

Re: MQTT IDF Bug? esp_mqtt_client_enqueue sending 0 bytes

Thanks for the confirmation. I found the bug and a workaround as described in my github issue: https://github.com/espressif/esp-idf/issues/9719 The problem is that they forgot to add the automatic payload size calculation in case '0' is passed for the 'len' parameter. If you manually set the correct...
by Xtensa2C
Mon Sep 05, 2022 10:42 am
Forum: ESP-IDF
Topic: MQTT IDF Bug? esp_mqtt_client_enqueue sending 0 bytes
Replies: 2
Views: 1142

MQTT IDF Bug? esp_mqtt_client_enqueue sending 0 bytes

Hello together I just updated from IDF 4.1.3 to IDF 4.4.2 I have a project relying on the "esp_mqtt_client_enqueue" function and after the update everything was building and running perfectly. However I noticed that suddenly my mqtt published and received messages contain no data anymore according t...
by Xtensa2C
Sun Sep 04, 2022 3:08 pm
Forum: ESP-IDF
Topic: How to run espcoredump.py
Replies: 1
Views: 1277

Re: How to run espcoredump.py

So I got it working but I don't actually know what was different this time. I invoked the "export.bat" as usual and then could decode my dump with the following command as described in the docs: python "...\esp\esp-idf\components\espcoredump\espcoredump.py" --chip esp32 info_corefile --core "...\Des...
by Xtensa2C
Sat Sep 03, 2022 2:01 pm
Forum: ESP-IDF
Topic: How to run espcoredump.py
Replies: 1
Views: 1277

How to run espcoredump.py

Hello together I am tinkering with the esp coredump feature under WIN10 and ESP IDF 4.4.2. Using the extension for VSC the coredump is decoded perfectly after it was automatically retrieved from the ESP. However I want to decode the raw coredump I get after storing it on flash for later extraction o...
by Xtensa2C
Mon Feb 28, 2022 7:29 pm
Forum: ESP-IDF
Topic: ESP MQTT broker abort during long messages
Replies: 3
Views: 1694

Re: ESP MQTT broker abort during long messages

I have opened an issue here: https://github.com/espressif/esp-idf/issues/8482
Please let me know if you are missing any vital information.
by Xtensa2C
Sun Feb 27, 2022 4:21 pm
Forum: ESP-IDF
Topic: ESP MQTT broker abort during long messages
Replies: 3
Views: 1694

ESP MQTT broker abort during long messages

Hi together, I just implemented an OTA-Update functionality via MQTT using the OTA examples on IDF version 4.3.1. It works like a charm and the mqtt message including the firmware is received as multiple message events with the size of the mqtt input message buffer size set by the mqtt config. Howev...
by Xtensa2C
Wed Feb 02, 2022 6:55 am
Forum: ESP-IDF
Topic: Wifi Easy Connect (DPP)
Replies: 6
Views: 6916

Re: Wifi Easy Connect (DPP)

Hi, the ticket was closed and the fix should be back ported to 4.3 and 4.4 however the last time I've checked this was not the case yet. Therefore I am currently using the standard wifi commissioning with a qr code and the espressif app. If dpp becomes available it is worth checking again for a poss...
by Xtensa2C
Tue Nov 16, 2021 6:43 pm
Forum: ESP-IDF
Topic: Wifi Easy Connect (DPP)
Replies: 6
Views: 6916

Re: Wifi Easy Connect (DPP)

Thanks for the support.
It seems there already is an open issue: https://github.com/espressif/esp-idf/issues/7646

However does anyone know if it is possible to generate static QR-Codes that are device dependent and do not change upon restart?
by Xtensa2C
Tue Nov 16, 2021 4:46 pm
Forum: ESP-IDF
Topic: Wifi Easy Connect (DPP)
Replies: 6
Views: 6916

Re: Wifi Easy Connect (DPP)

Hi you were right it seems that the DHCP is not started but in init mode. But I don't know why this is the case. Here the code: /* DPP Enrollee Example This example code is in the Public Domain (or CC0 licensed, at your option.) Unless required by applicable law or agreed to in writing, this softwar...
by Xtensa2C
Mon Nov 15, 2021 7:06 pm
Forum: ESP-IDF
Topic: Wifi Easy Connect (DPP)
Replies: 6
Views: 6916

Wifi Easy Connect (DPP)

Hi guys, I just flashed the DPP example from the ESP IDF 4.3.1. The problem seems to be that the IP event is not being sent to the event loop. As you can see in the log below the DPP connection was successfull but the ESP did not report the IP or Password / SSID. When I try to connect with a 5Ghz ne...