Skip to content

Commit 088ebcc

Browse files
committed
ayushsharma82/RPAsyncTCP@^1.3.2
1 parent 0a8053a commit 088ebcc

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/build-rpi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: arduino-cli lib install ArduinoJson
4040

4141
- 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
4343

4444
- name: Checkout
4545
uses: actions/checkout@v4

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ platform = https://github.com/maxgerhardt/platform-raspberrypi.git
100100
board = rpipicow
101101
board_build.core = earlephilhower
102102
lib_deps =
103-
ayushsharma82/RPAsyncTCP@^1.3.1
103+
ayushsharma82/RPAsyncTCP@^1.3.2
104104
ESP32Async/ESPAsyncWebServer
105105
lib_ignore =
106106
lwIP_ESPHost

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
{
4141
"owner": "ayushsharma82",
4242
"name": "RPAsyncTCP",
43-
"version": "^1.3.1",
43+
"version": "^1.3.2",
4444
"platforms": "raspberrypi"
4545
}
4646
],

platformio.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ board = rpipicow
9999
board_build.core = earlephilhower
100100
lib_deps =
101101
bblanchon/ArduinoJson @ 7.3.0
102-
ayushsharma82/RPAsyncTCP@^1.3.1
102+
ayushsharma82/RPAsyncTCP@^1.3.2
103103
lib_ignore =
104104
lwIP_ESPHost
105105
build_flags = ${env.build_flags}
@@ -145,7 +145,7 @@ board = ${sysenv.PIO_BOARD}
145145
board_build.core = earlephilhower
146146
lib_deps =
147147
bblanchon/ArduinoJson @ 7.3.0
148-
ayushsharma82/RPAsyncTCP@^1.3.1
148+
ayushsharma82/RPAsyncTCP@^1.3.2
149149
lib_ignore =
150150
lwIP_ESPHost
151151
build_flags = ${env.build_flags}

src/ESPAsyncWebServer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1077,7 +1077,7 @@ class AsyncWebServer : public AsyncMiddlewareChain {
10771077
void end();
10781078

10791079
tcp_state state() const {
1080-
#if defined(ESP8266) || defined(TARGET_RP2040) || defined(TARGET_RP2350) || defined(PICO_RP2040) || defined(PICO_RP2350)
1080+
#ifdef ESP8266
10811081
// ESPAsyncTCP and RPAsyncTCP methods are not corrected declared with const for immutable ones.
10821082
return static_cast<tcp_state>(const_cast<AsyncWebServer *>(this)->_server.status());
10831083
#else

0 commit comments

Comments
 (0)