Search found 3 matches

by jk1886
Wed Aug 10, 2022 7:50 pm
Forum: ESP-IDF
Topic: esp_http_client crashes esp32
Replies: 1
Views: 1959

esp_http_client crashes esp32

I've added code from esp_http_client_example.c to my stable working project. The function https_with_url is called every 30s: static void api_task(void *pvParameters) { while(1) { https_with_url(); sleep(30); } ESP_LOGI(TAG, "Finish api"); vTaskDelete(NULL); } Function just connects, without any dat...
by jk1886
Wed Aug 10, 2022 7:26 pm
Forum: ESP-IDF
Topic: Flash esp32 preserving NVS
Replies: 2
Views: 974

Re: Flash esp32 preserving NVS

Sorry, it was my mistake in code migration from Arduino.
by jk1886
Wed Aug 03, 2022 12:51 pm
Forum: ESP-IDF
Topic: Flash esp32 preserving NVS
Replies: 2
Views: 974

Flash esp32 preserving NVS

How can I write app image to esp32, preserving NVS ? I'm using Visual Studio Code with esp-idf under Debian.