Search found 48 matches

by sergiomarina
Wed Oct 19, 2022 9:23 pm
Forum: ESP-IDF
Topic: update ESP-IDF with more recent code
Replies: 3
Views: 1767

Re: update ESP-IDF with more recent code

@ ESP_igrr Following: https://github.com/espressif/vscode-esp-idf-extension/blob/master/docs/tutorial/install.md I've downloaded the ESP-IDF 4.4.2 (from Espressif server since I was not able to manage in a similar way by selecting "Github" instead) But the "esp_http_server.h" (ESP-IDF V4.4.2) is sti...
by sergiomarina
Wed Oct 19, 2022 9:06 pm
Forum: ESP-IDF
Topic: Error updating ESP-IDF extension (from VSCode)
Replies: 2
Views: 1543

Re: Error updating ESP-IDF extension (from VSCode)

@ nwolcott this is the tutorial that I'm following: https://github.com/espressif/vscode-esp-idf-extension/blob/master/docs/tutorial/install.md There is another page in the IDF documentation that refers to IDF update, but does not seem to be coherent and I'm concerned to mess things up. This is the p...
by sergiomarina
Tue Oct 18, 2022 7:11 pm
Forum: ESP-IDF
Topic: update ESP-IDF with more recent code
Replies: 3
Views: 1767

update ESP-IDF with more recent code

This is an excerpt of my "esp_http_server.h" (ESP-IDF V4.4) .global_transport_ctx_free_fn = NULL, \ .open_fn = NULL, \ searching www ("https://github.com/espressif/esp-idf") I found a newer version and the excerpt is like that .global_transport_ctx_free_fn = NULL, \ .enable_so_linger = false, \ .lin...
by sergiomarina
Tue Oct 18, 2022 6:19 pm
Forum: ESP-IDF
Topic: Error updating ESP-IDF extension (from VSCode)
Replies: 2
Views: 1543

Error updating ESP-IDF extension (from VSCode)

from VSCode View->Palette->ESP-IDF: Configure ESP-IDF extension In my context is not identical, but this is the idea: https://github.com/espressif/vscode-esp-idf-extension/blob/master/docs/tutorial/install.md In the VSCode output tab I got le following errors: " WARNING: You are using pip version 21...
by sergiomarina
Thu Aug 04, 2022 5:38 pm
Forum: General Discussion
Topic: esp32-camera lens provisioning
Replies: 0
Views: 847

esp32-camera lens provisioning

Hi Gentlemen :-)
is somewhere available a comprehensive description of the parameters in the struct "sensor_t" in the header file ~/components/esp_camera/driver/include/sensor.h
?

Thank you very much!
by sergiomarina
Mon Jun 27, 2022 10:17 am
Forum: ESP-IDF
Topic: Is there a way to do this with OTA? (reboot, flash only a specific device, ping for information, etc)
Replies: 4
Views: 2360

Re: Is there a way to do this with OTA? (reboot, flash only a specific device, ping for information, etc)

Hi statusquo and All, I'm doing this exercise as well. The way I'm pursuing is based on MAC addr identity. The web server, which is also a file server and a WiFi access point, stores the new exe file with the MAC address as a preamble. As per previous tip the client polls the web server supplying it...
by sergiomarina
Sun May 01, 2022 3:49 pm
Forum: ESP-IDF
Topic: ESPNOW fails because of ESP_ERR_ESPNOW_IF
Replies: 1
Views: 2092

Re: ESPNOW fails because of ESP_ERR_ESPNOW_IF

I reply just to underline that I have the same problem.
IDF 4.4
Please, provide us a bit to find a solution (or just a workaround)
Thank you!
by sergiomarina
Mon Feb 28, 2022 9:25 am
Forum: ESP-IDF
Topic: gettimeofday() returning erratic values
Replies: 6
Views: 6667

Re: gettimeofday() returning erratic values

Hi ESP_Sprite, thank you for your answer. Your hint was successful. I tried the following: struct timeval timeNow; timeNow.tv_sec = 0; but it did not work At the end I come up to the following: struct timeval timeNow; settimeoftheday(&timeNow.tv_sec, NULL); ESP_LOGI(TAG."myDate: %s and now: %ld\n", ...
by sergiomarina
Fri Feb 25, 2022 2:47 pm
Forum: ESP-IDF
Topic: gettimeofday() returning erratic values
Replies: 6
Views: 6667

Re: gettimeofday() returning erratic values

i got a similar issue with settimeofday and gettimeofday that has been streamlined in the test here below: ============= an excerpt of my code =========== time_t t = mktime(&tm); now.tv_sec = t; settimeofday(&now,NULL); if (gettimeofday(&now,NULL) == 0) printf("gettime success and now = %ld\n", now....