File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 39
39
run : arduino-cli lib install ArduinoJson
40
40
41
41
- name : Install RPAsyncTCP
42
- run : ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/ayushsharma82/RPAsyncTCP#v1.3.1
42
+ run : ARDUINO_LIBRARY_ENABLE_UNSAFE_INSTALL=true arduino-cli lib install --git-url https://github.com/ayushsharma82/RPAsyncTCP#v1.3.2
43
43
44
44
- name : Checkout
45
45
uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -100,7 +100,7 @@ platform = https://github.com/maxgerhardt/platform-raspberrypi.git
100
100
board = rpipicow
101
101
board_build.core = earlephilhower
102
102
lib_deps =
103
- ayushsharma82/RPAsyncTCP@^1.3.1
103
+ ayushsharma82/RPAsyncTCP@^1.3.2
104
104
ESP32Async/ESPAsyncWebServer
105
105
lib_ignore =
106
106
lwIP_ESPHost
Original file line number Diff line number Diff line change 40
40
{
41
41
"owner" : " ayushsharma82" ,
42
42
"name" : " RPAsyncTCP" ,
43
- "version" : " ^1.3.1 " ,
43
+ "version" : " ^1.3.2 " ,
44
44
"platforms" : " raspberrypi"
45
45
}
46
46
],
Original file line number Diff line number Diff line change @@ -99,7 +99,7 @@ board = rpipicow
99
99
board_build.core = earlephilhower
100
100
lib_deps =
101
101
bblanchon/ArduinoJson @ 7.3.0
102
- ayushsharma82/RPAsyncTCP@^1.3.1
102
+ ayushsharma82/RPAsyncTCP@^1.3.2
103
103
lib_ignore =
104
104
lwIP_ESPHost
105
105
build_flags = ${env.build_flags}
@@ -145,7 +145,7 @@ board = ${sysenv.PIO_BOARD}
145
145
board_build.core = earlephilhower
146
146
lib_deps =
147
147
bblanchon/ArduinoJson @ 7.3.0
148
- ayushsharma82/RPAsyncTCP@^1.3.1
148
+ ayushsharma82/RPAsyncTCP@^1.3.2
149
149
lib_ignore =
150
150
lwIP_ESPHost
151
151
build_flags = ${env.build_flags}
Original file line number Diff line number Diff line change @@ -1077,7 +1077,7 @@ class AsyncWebServer : public AsyncMiddlewareChain {
1077
1077
void end ();
1078
1078
1079
1079
tcp_state state () const {
1080
- #if defined( ESP8266) || defined(TARGET_RP2040) || defined(TARGET_RP2350) || defined(PICO_RP2040) || defined(PICO_RP2350)
1080
+ #ifdef ESP8266
1081
1081
// ESPAsyncTCP and RPAsyncTCP methods are not corrected declared with const for immutable ones.
1082
1082
return static_cast <tcp_state>(const_cast <AsyncWebServer *>(this )->_server .status ());
1083
1083
#else
You can’t perform that action at this time.
0 commit comments