Search found 434 matches

by Baldhead
Mon Sep 04, 2023 2:50 am
Forum: ESP-IDF
Topic: OTA firmware update error
Replies: 37
Views: 80157

Re: OTA firmware update error

Yeah, sorry for that, I'm not getting any informal responses from my team members here. Can you either assemble a minimal project that reproduces this, or is the csv plus example you mentioned in the first post enough? Hi @ESP_Sprite, I think that any project with the file partition in annex must f...
by Baldhead
Sat Sep 02, 2023 5:45 pm
Forum: ESP-IDF
Topic: OTA firmware update error
Replies: 37
Views: 80157

Re: OTA firmware update error

A lack of respect for the customer.
The people at espressif could at least give a position on the subject, if they tried to solve the problem, a date, even if it takes a year.

If it was a business customer they would have answered already.
by Baldhead
Mon Aug 28, 2023 7:12 pm
Forum: ESP-IDF
Topic: OTA firmware update error
Replies: 37
Views: 80157

Re: OTA firmware update error

@ESP_Sprite or @rudi;-)

Did espressif check this issue ?

Thank's.
by Baldhead
Fri Aug 11, 2023 11:47 pm
Forum: ESP-IDF
Topic: OTA firmware update error
Replies: 37
Views: 80157

Re: OTA firmware update error

Hi @rudi;-)

Did you manage to check this problem ?

Thank's.
by Baldhead
Fri Aug 11, 2023 11:43 pm
Forum: ESP-IDF
Topic: req->aux == null
Replies: 5
Views: 2803

Re: req->aux == null

With the suggestion of @ESP-YJM i found the problem. The req->aux is set to null every time the uri handler returns. This is not persistent until the "close socket", it is only valid per "client message reception". This way i can't use "httpd_ws_send_frame( req, &ws_pkt );" that is "sync". I have to...
by Baldhead
Thu Aug 10, 2023 10:49 pm
Forum: ESP-IDF
Topic: req->aux == null
Replies: 5
Views: 2803

Re: req->aux == null

I disabled https, only using http, same problem.

The wifi and lwip and mbedtls memory were in the spiram, i put everything in the internal memory and still the same problem persists.
by Baldhead
Tue Aug 08, 2023 9:02 pm
Forum: ESP-IDF
Topic: req->aux == null
Replies: 5
Views: 2803

Re: req->aux == null

I created another task, that receive a struct by copy from a queue, from ota_handler, . I implemented it like this now: The ota_handler send a struct by copy(through a queue) to another task(send_message_task). In the handler, the queue send a struct data and return immediately, since the handler ne...
by Baldhead
Mon Aug 07, 2023 12:19 am
Forum: ESP-IDF
Topic: Event task priority ???
Replies: 3
Views: 1470

Re: Event task priority ???

Sorry @MicroController,

Only add:
#include "esp_task.h"

ESP_TASKD_EVENT_PRIO

Thank`s.
by Baldhead
Sun Aug 06, 2023 10:56 pm
Forum: ESP-IDF
Topic: Event task priority ???
Replies: 3
Views: 1470

Re: Event task priority ???

Is there any way to get this value by macro or function ?
by Baldhead
Sun Aug 06, 2023 9:29 pm
Forum: ESP-IDF
Topic: Event task priority ???
Replies: 3
Views: 1470

Event task priority ???

Hi,

I think that the events in ESP32-S3 run in a separated task.

I register a event like so:

Code: Select all

ESP_ERROR_CHECK(esp_event_handler_register(ESP_HTTPS_OTA_EVENT, ESP_EVENT_ANY_ID, &ota_event_handler, NULL));
What is the event task priority ???