Change references to AsyncTCP library

This commit is contained in:
Daniel Öster 2024-12-19 19:55:31 +02:00
parent bdc617c0de
commit f6fa4540a6
5 changed files with 6 additions and 6 deletions

View file

@ -64,7 +64,7 @@ _____ _ _ ___ _____ _
#include "Update.h"
#include "StreamString.h"
#if ELEGANTOTA_USE_ASYNC_WEBSERVER == 1
#include "../../me-no-dev-AsyncTCP/src/AsyncTCP.h"
#include "../../mathieucarbou-AsyncTCP/src/AsyncTCP.h"
#include "../../me-no-dev-ESPAsyncWebServer/src/ESPAsyncWebServer.h"
#define ELEGANTOTA_WEBSERVER AsyncWebServer
#else

View file

@ -22,7 +22,7 @@
#include <Arduino.h>
#ifdef ESP32
#include "../../me-no-dev-AsyncTCP/src/AsyncTCP.h"
#include "../../mathieucarbou-AsyncTCP/src/AsyncTCP.h"
#define SSE_MAX_QUEUED_MESSAGES 32
#else
#include <ESPAsyncTCP.h>

View file

@ -23,7 +23,7 @@
#include <Arduino.h>
#ifdef ESP32
#include "../../me-no-dev-AsyncTCP/src/AsyncTCP.h"
#include "../../mathieucarbou-AsyncTCP/src/AsyncTCP.h"
#define WS_MAX_QUEUED_MESSAGES 32
#else
#include <ESPAsyncTCP.h>

View file

@ -30,10 +30,10 @@
#ifdef ESP32
#include <WiFi.h>
#include "../../me-no-dev-AsyncTCP/src/AsyncTCP.h"
#include "../../mathieucarbou-AsyncTCP/src/AsyncTCP.h"
#elif defined(ESP8266)
#include <ESP8266WiFi.h>
#include "../../me-no-dev-AsyncTCP/src/AsyncTCP.h"
#include "../../mathieucarbou-AsyncTCP/src/AsyncTCP.h"
#else
#error Platform not supported
#endif