Skip to content

Commit 717925a

Browse files
committed
Fix Arduino Elumator CI
1 parent 3ec0583 commit 717925a

8 files changed

Lines changed: 3 additions & 7 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
.DS_Store
22
.lh
3+
/.ci
34
/.pio
45
/.vscode
56
/logs

arduino_emulator_example/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@ target_include_directories(espasyncwebserver PUBLIC
1212
${CMAKE_SOURCE_DIR}/../.ci/arduino-esp32/libraries/FS/src
1313
${CMAKE_SOURCE_DIR}/../.ci/lwip/src/include
1414
${CMAKE_SOURCE_DIR}/../.ci/lwip-contrib/ports/unix/port/include
15-
${CMAKE_SOURCE_DIR}
15+
${CMAKE_SOURCE_DIR}/host_config
1616
)
1717
target_link_libraries(espasyncwebserver PUBLIC arduino_emulator)
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/AsyncWebServerLogging.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,6 @@
201201
* Arduino specific configurations
202202
*/
203203
#elif defined(ARDUINO)
204-
205204
#if defined(USE_ESP_IDF_LOG)
206205
#include <esp_log.h>
207206
#define async_ws_log_e(format, ...) ESP_LOGE("async_ws", "%s() %d: " format, __FUNCTION__, __LINE__, ##__VA_ARGS__)

src/ESPAsyncWebServer.h

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,7 @@
3636

3737
#endif // __has_include("ArduinoJson.h")
3838

39-
#if defined(ESP32) || defined(LIBRETINY)
40-
#include <AsyncTCP.h>
41-
#include <assert.h>
42-
#elif defined(HOST)
39+
#if defined(ESP32) || defined(LIBRETINY) || defined(HOST)
4340
#include <AsyncTCP.h>
4441
#include <assert.h>
4542
#elif defined(ESP8266)

src/WebAuthentication.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33

44
#include "WebAuthentication.h"
55
#include "AsyncWebServerLogging.h"
6-
#include "ESPAsyncWebServer.h"
76
#include <libb64/cencode.h>
87

98
#if defined(ESP32) || defined(TARGET_RP2040) || defined(TARGET_RP2350) || defined(PICO_RP2040) || defined(PICO_RP2350) || defined(HOST)

0 commit comments

Comments
 (0)