File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed
Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,8 @@ lib_deps =
4141 vshymanskyy/Preferences@^2.1.0
4242 khoih-prog/AsyncTCP_RP2040W@^1.2.0
4343 ${env.lib_deps}
44+ lib_ignore =
45+ lwIP_ESPHost
4446
4547[env:pico2]
4648platform = https://github.com/maxgerhardt/platform-raspberrypi.git
@@ -51,7 +53,8 @@ lib_deps =
5153 vshymanskyy/Preferences@^2.1.0
5254 khoih-prog/AsyncTCP_RP2040W@^1.2.0
5355 ${env.lib_deps}
54-
56+ lib_ignore =
57+ lwIP_ESPHost
5558
5659; ------------
5760; CI Workflows
@@ -80,6 +83,8 @@ lib_deps =
8083 vshymanskyy/Preferences@^2.1.0
8184 khoih-prog/AsyncTCP_RP2040W@^1.2.0
8285 ${env.lib_deps}
86+ lib_ignore =
87+ lwIP_ESPHost
8388
8489[env:ci-rp2350]
8590platform = https://github.com/maxgerhardt/platform-raspberrypi.git
@@ -89,4 +94,6 @@ board_build.core = earlephilhower
8994lib_deps =
9095 vshymanskyy/Preferences@^2.1.0
9196 khoih-prog/AsyncTCP_RP2040W@^1.2.0
92- ${env.lib_deps}
97+ ${env.lib_deps}
98+ lib_ignore =
99+ lwIP_ESPHost
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ Upgrade to NetWizard Pro: https://netwizard.pro
6868 #define NETWIZARD_REQ_HANDLER RequestHandler
6969 #endif
7070 #define HARDWARE " ESP32"
71- #elif defined(TARGET_RP2040)
71+ #elif defined(TARGET_RP2040) || defined(PICO_RP2040)
7272 #include " WiFi.h"
7373 #if NETWIZARD_USE_ASYNC_WEBSERVER == 1
7474 #include " AsyncTCP_RP2040W.h"
@@ -82,7 +82,7 @@ Upgrade to NetWizard Pro: https://netwizard.pro
8282 #define NETWIZARD_REQ_HANDLER RequestHandler
8383 #endif
8484 #define HARDWARE " RP2040"
85- #elif defined(TARGET_RP2350)
85+ #elif defined(TARGET_RP2350) || defined(PICO_RP2350)
8686 #include " WiFi.h"
8787 #if NETWIZARD_USE_ASYNC_WEBSERVER == 1
8888 #include " AsyncTCP_RP2040W.h"
You can’t perform that action at this time.
0 commit comments