Replies: 2 comments 2 replies
-
|
@Ray-25 please search before opening an issue. |
Beta Was this translation helpful? Give feedback.
2 replies
-
|
Ok, its frustrating fact to an Arduino IDE user. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Platform
ESP32
IDE / Tooling
Arduino (IDE/CLI)
What happened?
Hi, I am green in programming, however, I ensembled different libraries to make the ESP32CAM to video stream asynchronously using up to ver. 3.0.3 of ESP32 firmware by Espressif and version 3.3.12 of EspAsynWebServer (ESP32Async) using the Arduino IDE. Everything was fine until I used the latest version of 3.3.8 of ESP32 by Espressif and 3.10.3 of EspAsynWebServer (and also Async TCP). It raised a lots of problems.
Some solved issue is adding "const" in unit8_t AsyncServer::status() const in AsyncTCP.cpp and uint_t status() const: in AsyncTCP.h (suggested by Gemini AI - const mismatch between the newer AsyncTCP and ESPAsyncWebServer libraries)
Other problem found including "assert failed: tcp_alloc /IDF/components/lwip/lwip/src/core/tcp.c:1854 (Required to lock TCPIP core functionality!)" (LwIP requirement issue?) It was suggested to find out all the tcp_new() or tcp_alloc so as to be wrapped by LOCK_TCPIP_CORE() and UNLOCK_TCPIP_CORE(), but it seem many places inside the library involved and making me a mess ..., anyway it may out of my present skill ...
I wish to know wether the above issue was solved or has been solved in the latest version?
Stack Trace
21:47:00.942 -> System startup !
21:47:00.942 -> Client Mode is set
21:47:01.525 -> ........
21:47:05.007 -> WiFi connected in client mode
21:47:05.007 -> Camera Stream Ready! Go to: http://192.168.8.5
21:47:05.007 -> mDNS responder started
21:47:05.195 ->
21:47:05.195 -> assert failed: tcp_alloc /IDF/components/lwip/lwip/src/core/tcp.c:1854 (Required to lock TCPIP core functionality!)
21:47:05.238 ->
Minimal Reproductible Example (MRE)
test.txt
I confirm that:
Beta Was this translation helpful? Give feedback.
All reactions