Search found 3 matches
- Mon Oct 02, 2017 12:12 pm
- Forum: ESP-IDF
- Topic: CORRUPT HEAP in multithread webserver with netconn API
- Replies: 4
- Views: 10074
Re: CORRUPT HEAP in multithread webserver with netconn API
Thank you for your attention. I put heap_caps_check_integrity(MALLOC_CAP_8BIT,true) in many place, but nothing new appeared in my monitor. I don't know am I use it in wrong way or heap corrupts in other place. If I understand correctly second argument is responsible for printing errors and this func...
- Sun Oct 01, 2017 2:23 pm
- Forum: ESP-IDF
- Topic: CORRUPT HEAP in multithread webserver with netconn API
- Replies: 4
- Views: 10074
CORRUPT HEAP in multithread webserver with netconn API
Hi, In my app I have simple webserver, which get measure from few ESP8266 and then send it to thingspeak. Everything works fine when I don't use task and after accept I call function which handle with request, but when I use task and after accept I create task which handle with request, I get Corrup...
- Sun Sep 24, 2017 7:38 pm
- Forum: ESP-IDF
- Topic: Netconn_delete return ERR_VAL
- Replies: 0
- Views: 2768
Netconn_delete return ERR_VAL
Hi, in my program, I check error value, which netconn_close and netconn_delete return. Netconn_close return ERR_OK, but after it netconn_delete return ERR_VAL(-6). It is normal situation ? Here is my code: #include "freertos/FreeRTOS.h" #include "esp_wifi.h" #include "esp_system.h" #include "esp_eve...