Skip to content

Commit e76266c

Browse files
committed
chore: switch to RPAsyncTCP dependency
1 parent 768accd commit e76266c

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ jobs:
7979
if: ${{ matrix.core == 'esp8266:esp8266' }}
8080
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/ESP32Async/ESPAsyncTCP#v2.0.0
8181

82-
- name: Install AsyncTCP (RP2040)
82+
- name: Install RPAsyncTCP (RP2040)
8383
if: ${{ matrix.core == 'rp2040:rp2040' }}
84-
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/khoih-prog/AsyncTCP_RP2040W#v1.2.0
84+
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/ayushsharma82/RPAsyncTCP#v1.3.0
8585

8686
- name: Install ESPAsyncWebServer
8787
run: ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/ESP32Async/ESPAsyncWebServer#v3.7.0

platformio.ini

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -32,26 +32,26 @@ lib_deps =
3232
ESP32Async/ESPAsyncTCP@^2.0.0
3333
${env.lib_deps}
3434

35-
[env:pico]
35+
[env:picow]
3636
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
3737
board = pico
3838
framework = arduino
3939
board_build.core = earlephilhower
4040
lib_deps =
4141
vshymanskyy/Preferences@^2.1.0
42-
khoih-prog/AsyncTCP_RP2040W@^1.2.0
42+
https://github.com/ayushsharma82/RPAsyncTCP#v1.3.0
4343
${env.lib_deps}
4444
lib_ignore =
4545
lwIP_ESPHost
4646

47-
[env:pico2]
47+
[env:pico2w]
4848
platform = https://github.com/maxgerhardt/platform-raspberrypi.git
4949
board = pico2
5050
framework = arduino
5151
board_build.core = earlephilhower
5252
lib_deps =
5353
vshymanskyy/Preferences@^2.1.0
54-
khoih-prog/AsyncTCP_RP2040W@^1.2.0
54+
https://github.com/ayushsharma82/RPAsyncTCP#v1.3.0
5555
${env.lib_deps}
5656
lib_ignore =
5757
lwIP_ESPHost
@@ -81,7 +81,7 @@ framework = arduino
8181
board_build.core = earlephilhower
8282
lib_deps =
8383
vshymanskyy/Preferences@^2.1.0
84-
khoih-prog/AsyncTCP_RP2040W@^1.2.0
84+
https://github.com/ayushsharma82/RPAsyncTCP#v1.3.0
8585
${env.lib_deps}
8686
lib_ignore =
8787
lwIP_ESPHost
@@ -93,7 +93,7 @@ framework = arduino
9393
board_build.core = earlephilhower
9494
lib_deps =
9595
vshymanskyy/Preferences@^2.1.0
96-
khoih-prog/AsyncTCP_RP2040W@^1.2.0
96+
https://github.com/ayushsharma82/RPAsyncTCP#v1.3.0
9797
${env.lib_deps}
9898
lib_ignore =
9999
lwIP_ESPHost

src/NetWizard.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Upgrade to NetWizard Pro: https://netwizard.pro
7171
#elif defined(TARGET_RP2040) || defined(PICO_RP2040)
7272
#include "WiFi.h"
7373
#if NETWIZARD_USE_ASYNC_WEBSERVER == 1
74-
#include "AsyncTCP_RP2040W.h"
74+
#include "RPAsyncTCP.h"
7575
#include "AsyncJson.h"
7676
#include "ESPAsyncWebServer.h"
7777
#define NETWIZARD_WEBSERVER AsyncWebServer
@@ -85,7 +85,7 @@ Upgrade to NetWizard Pro: https://netwizard.pro
8585
#elif defined(TARGET_RP2350) || defined(PICO_RP2350)
8686
#include "WiFi.h"
8787
#if NETWIZARD_USE_ASYNC_WEBSERVER == 1
88-
#include "AsyncTCP_RP2040W.h"
88+
#include "RPAsyncTCP.h"
8989
#include "AsyncJson.h"
9090
#include "ESPAsyncWebServer.h"
9191
#define NETWIZARD_WEBSERVER AsyncWebServer

0 commit comments

Comments
 (0)