Skip to content

Commit bcf0750

Browse files
committed
fix: minor improvements to platformio.ini and ci.yml
1 parent 148f87e commit bcf0750

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

platformio.ini

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff 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]
4648
platform = 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]
8590
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
@@ -89,4 +94,6 @@ board_build.core = earlephilhower
8994
lib_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

src/NetWizard.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)