Search found 2 matches

by panilsunil
Mon May 23, 2022 12:08 pm
Forum: General Discussion
Topic: ESP32 - FreeRTOS conflict with tasks and interrupt
Replies: 1
Views: 1996

Re: ESP32 - FreeRTOS conflict with tasks and interrupt

hello alexvazquez, it seems that you have semaphore management (I2CMutexSemaphore) for TCA9548A but not for TCA9548A. it may happen that the communication is going on with TCA9548A and interrupt strucks. The solution may be take I2CMutexSemaphore in interrupt handler also and give after executing th...
by panilsunil
Mon May 23, 2022 11:50 am
Forum: General Discussion
Topic: Implementing libcurl with espidf
Replies: 0
Views: 1039

Implementing libcurl with espidf

Hello members, I am presently using ESP-IDF v5.0-dev-2586-ga82e6e63d9-dirty. I am trying to use libcurl with idf. I tried following this link: https://github.com/nkolban/esp32-snippets/tree/master/curl/build_files. but i am getting this error: fatal error: curl/curl.h: No such file or directory. . A...