Replies: 3 comments 4 replies
-
this issue can be caused by any libray using the lwip stack. AsyncTCP is not alone. On the AsyncTCP side, this issue was fixed. So please makesure you are using the right AsyncTCP version from the right place (there are several outdated or unofficial forks). If you are 100% sure this is a bug linked to this library, please share your MRE that only contains your asynctcp code showing how to reproduce, and also your PIO file (or indication about which compile flags or arduino core you use). |
Beta Was this translation helpful? Give feedback.
-
I use the newest versions of these libraries, is that correct? |
Beta Was this translation helpful? Give feedback.
-
The module i have is a combined ESP32-T3 and SX1262 LoRa module. `// bridge_polite // Mesh has much greater memory requirements, and you may need to limit the #include <Arduino.h> // In this small artifical network of 4 nodes, // lilygo T3 v2.1.6 //#define LLG_LED_GRN 25 #define RXTIMEOUT 3000 // it is roughly the delay between successive transmissions // Singleton instance of the radio driver // Class to manage message delivery and receipt, using the driver declared above //void drawBridgeNumber() void recvMsg(uint8_t *data, size_t len){ WebSerial.println("Received Data..."); void setup() //display.init(); //sx1262.setModemConfig(RH_RF95::Bw125Cr45Sf128)) Serial.println("SX1262 ready"); WiFi.mode(WIFI_STA); } uint8_t data[] = "Hello back from bridge"; void loop() //display.display();
} |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Platform
ESP32
IDE / Tooling
Arduino (IDE/CLI)
What happened?
i have an ESP32-T3 with WebSerial library which uses the latest ESP Async TCP and latest ESP AsyncWebServer. Esp32 boards version is 3.3.0. The software which i have written to show some data on a webpage is crashing with the following error:
Assert failed: tcp_alloc, tcp.c:1854 (Required to lock TCPIP core funcitonality)
Stack Trace
Minimal Reproductible Example (MRE)
Run WebSerial example on a ESP32-T3:
https://randomnerdtutorials.com/esp32-webserial-library/
I confirm that:
Beta Was this translation helpful? Give feedback.
All reactions