You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Board: ESP32 Dev Module
Core Installation version: 3.2.0+sha.b9530d3
IDE name: Platform.io
Description:
Hello,
I'm trying to speed up my code by adding 2 parallel tasks which are using "HTTPClient" to do one GET call each.
My main class is spawning the 2 tasks as such
xTaskCreate(&GetInverterRealtimeData, // Task function
"GetInverterRealtimeData", // Task name
8192, // Stack size
this,
0, // Priority
NULL);
xTaskCreate(&GetMeterRealtimeData, // Task function
"GetMeterRealtimeData", // Task name
8192, // Stack size
this,
0, // Priority
NULL);
One time for Task1 and one time for Task2 and so on (in an alternate fashion)
The error should be this
#define ENOBUFS 105 /* No buffer space available */
but i've no idea what it is referring to
Regards
The text was updated successfully, but these errors were encountered:
maxdd
changed the title
[E][WiFiClient.cpp:212] connect(): socket: 105 Error code: -1 when using Tasks
[E][WiFiClient.cpp:212] connect(): socket: 105 when using Tasks
Apr 17, 2021
[STALE_SET] This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs. Thank you for your contributions.
Hardware:
Board: ESP32 Dev Module
Core Installation version: 3.2.0+sha.b9530d3
IDE name: Platform.io
Description:
Hello,
I'm trying to speed up my code by adding 2 parallel tasks which are using "HTTPClient" to do one GET call each.
My main class is spawning the 2 tasks as such
the 2 tasks are doing something like this
the httpGETRequest is as follow
What i'm experiencing is that after roughly 5-6 parallel calls i receive the following
One time for Task1 and one time for Task2 and so on (in an alternate fashion)
The error should be this
#define ENOBUFS 105 /* No buffer space available */
but i've no idea what it is referring to
Regards
The text was updated successfully, but these errors were encountered: