Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Commit 80ac7ee

Browse files
authored
v1.6.4 to remove unused variable
#### Releases v1.6.4 1. Remove unused variable to avoid compiler warning and error
1 parent ee6a67c commit 80ac7ee

32 files changed

+66
-43
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ If you don't find anything, please [open a new issue](https://github.com/khoih-p
1515
Please ensure to specify the following:
1616

1717
* Arduino IDE version (e.g. 1.8.19) or Platform.io version
18-
* Board Core Version (e.g. ESP32 core v2.0.5)
18+
* Board Core Version (e.g. ESP32 core v2.0.6)
1919
* Contextual information (e.g. what you were trying to achieve)
2020
* Simplest possible steps to reproduce
2121
* Anything that might be relevant in your opinion, such as:
@@ -31,7 +31,7 @@ Please be educated, civilized and constructive. Disrespective posts against [Git
3131
```
3232
Arduino IDE version: 1.8.19
3333
ESP32_DEV board
34-
ESP32 core v2.0.5
34+
ESP32 core v2.0.6
3535
OS: Ubuntu 20.04 LTS
3636
Linux xy-Inspiron-3593 5.15.0-56-generic #62~20.04.1-Ubuntu SMP Tue Nov 22 21:24:20 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
3737

changelog.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
## Table of contents
1616

1717
* [Changelog](#changelog)
18+
* [Releases v1.6.4](#releases-v164)
1819
* [Releases v1.6.3](#releases-v163)
1920
* [Releases v1.6.2](#releases-v162)
2021

@@ -25,6 +26,10 @@
2526

2627
## Changelog
2728

29+
#### Releases v1.6.4
30+
31+
1. Remove unused variable to avoid compiler warning and error
32+
2833
#### Releases v1.6.3
2934

3035
1. Add `Async_WebSocketsServer`, `Async_HttpBasicAuth` and `MQTT` examples

examples/AsyncWebServer_SendChunked/AsyncWebServer_SendChunked.ino

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ String out;
135135
void handleRoot(AsyncWebServerRequest *request)
136136
{
137137
out.reserve(STRING_SIZE);
138-
char temp[70];
139138

140139
// clear the String to start over
141140
out = String();

examples/Async_AdvancedWebServer_SendChunked/Async_AdvancedWebServer_SendChunked.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
*****************************************************************************************************************************/
4040

4141
#if !( defined(ESP32) )
42-
#error This code is designed for (ESP32 + W5500) to run on ESP32 platform! Please check your Tools->Board setting.
42+
#error This code is designed for (ESP32 + W5500) to run on ESP32 platform! Please check your Tools->Board setting.
4343
#endif
4444

4545
#include <Arduino.h>
@@ -186,7 +186,7 @@ void drawGraph(AsyncWebServerRequest *request)
186186
AWS_LOGDEBUG1("Total length to send in chunks =", out.length());
187187

188188
AsyncWebServerResponse *response = request->beginChunkedResponse("image/svg+xml", [](uint8_t *buffer, size_t maxLen,
189-
size_t filledLength) -> size_t
189+
size_t filledLength) -> size_t
190190
{
191191
size_t len = min(maxLen, out.length() - filledLength);
192192
memcpy(buffer, out.c_str() + filledLength, len);

examples/MQTTClient_Auth/defines.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/****************************************************************************************************************************
22
defines.h
33
4-
For RP2040W with CYW43439 WiFi
4+
For W5500 LwIP Ethernet in ESP32 (ESP32 + W5500)
55
6-
AsyncWebServer_RP2040W is a library for the RP2040W with CYW43439 WiFi
6+
AsyncWebServer_ESP32_W5500 is a library for the LwIP Ethernet W5500 in ESP32 to run AsyncWebServer
77
88
Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer)
9-
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_RP2040W
9+
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_ESP32_W5500
1010
Licensed under GPLv3 license
1111
*****************************************************************************************************************************/
1212

examples/MQTTClient_Basic/defines.h

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
/****************************************************************************************************************************
22
defines.h
33
4-
For RP2040W with CYW43439 WiFi
4+
For W5500 LwIP Ethernet in ESP32 (ESP32 + W5500)
55
6-
AsyncWebServer_RP2040W is a library for the RP2040W with CYW43439 WiFi
6+
AsyncWebServer_ESP32_W5500 is a library for the LwIP Ethernet W5500 in ESP32 to run AsyncWebServer
77
88
Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer)
9-
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_RP2040W
9+
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_ESP32_W5500
1010
Licensed under GPLv3 license
1111
*****************************************************************************************************************************/
1212

13-
1413
#ifndef defines_h
1514
#define defines_h
1615

examples/MQTT_ThingStream/defines.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/****************************************************************************************************************************
22
defines.h
33
4-
For RP2040W with CYW43439 WiFi
4+
For W5500 LwIP Ethernet in ESP32 (ESP32 + W5500)
55
6-
AsyncWebServer_RP2040W is a library for the RP2040W with CYW43439 WiFi
6+
AsyncWebServer_ESP32_W5500 is a library for the LwIP Ethernet W5500 in ESP32 to run AsyncWebServer
77
88
Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer)
9-
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_RP2040W
9+
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_ESP32_W5500
1010
Licensed under GPLv3 license
1111
*****************************************************************************************************************************/
1212

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"AsyncWebServer_ESP32_W5500",
3-
"version": "1.6.3",
3+
"version": "1.6.4",
44
"description":"Asynchronous HTTP and WebSocket Server Library for (ESP32 + LwIP W5500). Now supporting using CString to save heap to send very large data and with examples to demo how to use beginChunkedResponse() to send large html in chunks",
55
"keywords":"http, async, async-webserver, websocket, webserver, esp32, w5500, lwip",
66
"authors":

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=AsyncWebServer_ESP32_W5500
2-
version=1.6.3
2+
version=1.6.4
33
author=Hristo Gochkov,Khoi Hoang
44
maintainer=Khoi Hoang <khoih.prog@gmail.com>
55
license=GPLv3

pics/W5500.png

209 KB
Loading

0 commit comments

Comments
 (0)