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

Commit c87fe15

Browse files
authored
v1.8.1 to remove unused variable
#### Releases v1.8.1 1. Remove unused variable to avoid compiler warning and error
1 parent a87f3d2 commit c87fe15

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+352
-69
lines changed

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Please ensure to specify the following:
1616

1717
* Arduino IDE version (e.g. 1.8.19) or Platform.io version
1818
* Board type (e.g. ESP32S3_DEV, ESP32S2_DEV, ESP32C3_DEV)
19-
* Board Core Version (e.g. ESP32 core v2.0.5)
19+
* Board Core Version (e.g. ESP32 core v2.0.6)
2020
* Contextual information (e.g. what you were trying to achieve)
2121
* Simplest possible steps to reproduce
2222
* 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
ESP32S3_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

+5
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
## Table of contents
1616

1717
* [Changelog](#changelog)
18+
* [Releases v1.8.1](#releases-v181)
1819
* [Releases v1.8.0](#releases-v180)
1920
* [Releases v1.7.0](#releases-v170)
2021
* [Releases v1.6.3](#releases-v163)
@@ -25,6 +26,10 @@
2526

2627
## Changelog
2728

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

3035
1. Add support to `ESP32_C3` boards using `LwIP W5500 Ethernet`

examples/AsyncMultiWebServer_ESP32_W5500/AsyncMultiWebServer_ESP32_W5500.ino

+15-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ IPAddress myDNS(8, 8, 8, 8);
5555

5656
//////////////////////////////////////////////////////////
5757

58-
// For W5500 & ESP32-S3
58+
// For ESP32-S3
5959
// Optional values to override default settings
6060
// Don't change unless you know what you're doing
6161
//#define ETH_SPI_HOST SPI3_HOST
@@ -69,6 +69,20 @@ IPAddress myDNS(8, 8, 8, 8);
6969
//#define SCK_GPIO 12
7070
//#define CS_GPIO 10
7171

72+
// For ESP32_C3
73+
// Optional values to override default settings
74+
// Don't change unless you know what you're doing
75+
//#define ETH_SPI_HOST SPI2_HOST
76+
//#define SPI_CLOCK_MHZ 25
77+
78+
// Must connect INT to GPIOxx or not working
79+
//#define INT_GPIO 10
80+
81+
//#define MISO_GPIO 5
82+
//#define MOSI_GPIO 6
83+
//#define SCK_GPIO 4
84+
//#define CS_GPIO 7
85+
7286
//////////////////////////////////////////////////////////
7387

7488
#include <AsyncTCP.h>

examples/AsyncSimpleServer_ESP32_W5500/AsyncSimpleServer_ESP32_W5500.ino

+15-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ IPAddress myDNS(8, 8, 8, 8);
5555

5656
//////////////////////////////////////////////////////////
5757

58-
// For W5500 & ESP32-S3
58+
// For ESP32-S3
5959
// Optional values to override default settings
6060
// Don't change unless you know what you're doing
6161
//#define ETH_SPI_HOST SPI3_HOST
@@ -69,6 +69,20 @@ IPAddress myDNS(8, 8, 8, 8);
6969
//#define SCK_GPIO 12
7070
//#define CS_GPIO 10
7171

72+
// For ESP32_C3
73+
// Optional values to override default settings
74+
// Don't change unless you know what you're doing
75+
//#define ETH_SPI_HOST SPI2_HOST
76+
//#define SPI_CLOCK_MHZ 25
77+
78+
// Must connect INT to GPIOxx or not working
79+
//#define INT_GPIO 10
80+
81+
//#define MISO_GPIO 5
82+
//#define MOSI_GPIO 6
83+
//#define SCK_GPIO 4
84+
//#define CS_GPIO 7
85+
7286
//////////////////////////////////////////////////////////
7387

7488
#include <AsyncTCP.h>

examples/AsyncWebServer_SendChunked/AsyncWebServer_SendChunked.ino

+15-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ IPAddress myDNS(8, 8, 8, 8);
5555

5656
//////////////////////////////////////////////////////////
5757

58-
// For W5500 & ESP32-S3
58+
// For ESP32-S3
5959
// Optional values to override default settings
6060
// Don't change unless you know what you're doing
6161
//#define ETH_SPI_HOST SPI3_HOST
@@ -69,6 +69,20 @@ IPAddress myDNS(8, 8, 8, 8);
6969
//#define SCK_GPIO 12
7070
//#define CS_GPIO 10
7171

72+
// For ESP32_C3
73+
// Optional values to override default settings
74+
// Don't change unless you know what you're doing
75+
//#define ETH_SPI_HOST SPI2_HOST
76+
//#define SPI_CLOCK_MHZ 25
77+
78+
// Must connect INT to GPIOxx or not working
79+
//#define INT_GPIO 10
80+
81+
//#define MISO_GPIO 5
82+
//#define MOSI_GPIO 6
83+
//#define SCK_GPIO 4
84+
//#define CS_GPIO 7
85+
7286
//////////////////////////////////////////////////////////
7387

7488
#include <AsyncTCP.h>

examples/Async_AdvancedWebServer_MemoryIssues_SendArduinoString/Async_AdvancedWebServer_MemoryIssues_SendArduinoString.ino

+15-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ IPAddress myDNS(8, 8, 8, 8);
8383

8484
//////////////////////////////////////////////////////////
8585

86-
// For W5500 & ESP32-S3
86+
// For ESP32-S3
8787
// Optional values to override default settings
8888
// Don't change unless you know what you're doing
8989
//#define ETH_SPI_HOST SPI3_HOST
@@ -97,6 +97,20 @@ IPAddress myDNS(8, 8, 8, 8);
9797
//#define SCK_GPIO 12
9898
//#define CS_GPIO 10
9999

100+
// For ESP32_C3
101+
// Optional values to override default settings
102+
// Don't change unless you know what you're doing
103+
//#define ETH_SPI_HOST SPI2_HOST
104+
//#define SPI_CLOCK_MHZ 25
105+
106+
// Must connect INT to GPIOxx or not working
107+
//#define INT_GPIO 10
108+
109+
//#define MISO_GPIO 5
110+
//#define MOSI_GPIO 6
111+
//#define SCK_GPIO 4
112+
//#define CS_GPIO 7
113+
100114
//////////////////////////////////////////////////////////
101115

102116
#include <AsyncTCP.h>

examples/Async_AdvancedWebServer_MemoryIssues_Send_CString/Async_AdvancedWebServer_MemoryIssues_Send_CString.ino

+15-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ IPAddress myDNS(8, 8, 8, 8);
8383

8484
//////////////////////////////////////////////////////////
8585

86-
// For W5500 & ESP32-S3
86+
// For ESP32-S3
8787
// Optional values to override default settings
8888
// Don't change unless you know what you're doing
8989
//#define ETH_SPI_HOST SPI3_HOST
@@ -97,6 +97,20 @@ IPAddress myDNS(8, 8, 8, 8);
9797
//#define SCK_GPIO 12
9898
//#define CS_GPIO 10
9999

100+
// For ESP32_C3
101+
// Optional values to override default settings
102+
// Don't change unless you know what you're doing
103+
//#define ETH_SPI_HOST SPI2_HOST
104+
//#define SPI_CLOCK_MHZ 25
105+
106+
// Must connect INT to GPIOxx or not working
107+
//#define INT_GPIO 10
108+
109+
//#define MISO_GPIO 5
110+
//#define MOSI_GPIO 6
111+
//#define SCK_GPIO 4
112+
//#define CS_GPIO 7
113+
100114
//////////////////////////////////////////////////////////
101115

102116
#include <AsyncTCP.h>

examples/Async_AdvancedWebServer_SendChunked/Async_AdvancedWebServer_SendChunked.ino

+15-1
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ IPAddress myDNS(8, 8, 8, 8);
8383

8484
//////////////////////////////////////////////////////////
8585

86-
// For W5500 & ESP32-S3
86+
// For ESP32-S3
8787
// Optional values to override default settings
8888
// Don't change unless you know what you're doing
8989
//#define ETH_SPI_HOST SPI3_HOST
@@ -97,6 +97,20 @@ IPAddress myDNS(8, 8, 8, 8);
9797
//#define SCK_GPIO 12
9898
//#define CS_GPIO 10
9999

100+
// For ESP32_C3
101+
// Optional values to override default settings
102+
// Don't change unless you know what you're doing
103+
//#define ETH_SPI_HOST SPI2_HOST
104+
//#define SPI_CLOCK_MHZ 25
105+
106+
// Must connect INT to GPIOxx or not working
107+
//#define INT_GPIO 10
108+
109+
//#define MISO_GPIO 5
110+
//#define MOSI_GPIO 6
111+
//#define SCK_GPIO 4
112+
//#define CS_GPIO 7
113+
100114
//////////////////////////////////////////////////////////
101115

102116
#include <AsyncTCP.h>

examples/Async_HelloServer/Async_HelloServer.ino

+15-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ IPAddress myDNS(8, 8, 8, 8);
5555

5656
//////////////////////////////////////////////////////////
5757

58-
// For W5500 & ESP32-S3
58+
// For ESP32-S3
5959
// Optional values to override default settings
6060
// Don't change unless you know what you're doing
6161
//#define ETH_SPI_HOST SPI3_HOST
@@ -69,6 +69,20 @@ IPAddress myDNS(8, 8, 8, 8);
6969
//#define SCK_GPIO 12
7070
//#define CS_GPIO 10
7171

72+
// For ESP32_C3
73+
// Optional values to override default settings
74+
// Don't change unless you know what you're doing
75+
//#define ETH_SPI_HOST SPI2_HOST
76+
//#define SPI_CLOCK_MHZ 25
77+
78+
// Must connect INT to GPIOxx or not working
79+
//#define INT_GPIO 10
80+
81+
//#define MISO_GPIO 5
82+
//#define MOSI_GPIO 6
83+
//#define SCK_GPIO 4
84+
//#define CS_GPIO 7
85+
7286
//////////////////////////////////////////////////////////
7387

7488
#include <AsyncTCP.h>

examples/Async_HelloServer2/Async_HelloServer2.ino

+15-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ IPAddress myDNS(8, 8, 8, 8);
5555

5656
//////////////////////////////////////////////////////////
5757

58-
// For W5500 & ESP32-S3
58+
// For ESP32-S3
5959
// Optional values to override default settings
6060
// Don't change unless you know what you're doing
6161
//#define ETH_SPI_HOST SPI3_HOST
@@ -69,6 +69,20 @@ IPAddress myDNS(8, 8, 8, 8);
6969
//#define SCK_GPIO 12
7070
//#define CS_GPIO 10
7171

72+
// For ESP32_C3
73+
// Optional values to override default settings
74+
// Don't change unless you know what you're doing
75+
//#define ETH_SPI_HOST SPI2_HOST
76+
//#define SPI_CLOCK_MHZ 25
77+
78+
// Must connect INT to GPIOxx or not working
79+
//#define INT_GPIO 10
80+
81+
//#define MISO_GPIO 5
82+
//#define MOSI_GPIO 6
83+
//#define SCK_GPIO 4
84+
//#define CS_GPIO 7
85+
7286
//////////////////////////////////////////////////////////
7387

7488
#include <AsyncTCP.h>

examples/Async_HttpBasicAuth/Async_HttpBasicAuth.ino

+15-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ IPAddress myDNS(8, 8, 8, 8);
5555

5656
//////////////////////////////////////////////////////////
5757

58-
// For W5500 & ESP32-S3
58+
// For ESP32-S3
5959
// Optional values to override default settings
6060
// Don't change unless you know what you're doing
6161
//#define ETH_SPI_HOST SPI3_HOST
@@ -69,6 +69,20 @@ IPAddress myDNS(8, 8, 8, 8);
6969
//#define SCK_GPIO 12
7070
//#define CS_GPIO 10
7171

72+
// For ESP32_C3
73+
// Optional values to override default settings
74+
// Don't change unless you know what you're doing
75+
//#define ETH_SPI_HOST SPI2_HOST
76+
//#define SPI_CLOCK_MHZ 25
77+
78+
// Must connect INT to GPIOxx or not working
79+
//#define INT_GPIO 10
80+
81+
//#define MISO_GPIO 5
82+
//#define MOSI_GPIO 6
83+
//#define SCK_GPIO 4
84+
//#define CS_GPIO 7
85+
7286
//////////////////////////////////////////////////////////
7387

7488
#include <AsyncWebServer_ESP32_SC_W5500.h>

examples/Async_PostServer/Async_PostServer.ino

+15-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ IPAddress myDNS(8, 8, 8, 8);
5555

5656
//////////////////////////////////////////////////////////
5757

58-
// For W5500 & ESP32-S3
58+
// For ESP32-S3
5959
// Optional values to override default settings
6060
// Don't change unless you know what you're doing
6161
//#define ETH_SPI_HOST SPI3_HOST
@@ -69,6 +69,20 @@ IPAddress myDNS(8, 8, 8, 8);
6969
//#define SCK_GPIO 12
7070
//#define CS_GPIO 10
7171

72+
// For ESP32_C3
73+
// Optional values to override default settings
74+
// Don't change unless you know what you're doing
75+
//#define ETH_SPI_HOST SPI2_HOST
76+
//#define SPI_CLOCK_MHZ 25
77+
78+
// Must connect INT to GPIOxx or not working
79+
//#define INT_GPIO 10
80+
81+
//#define MISO_GPIO 5
82+
//#define MOSI_GPIO 6
83+
//#define SCK_GPIO 4
84+
//#define CS_GPIO 7
85+
7286
//////////////////////////////////////////////////////////
7387

7488
#include <AsyncTCP.h>

examples/Async_RegexPatterns_ESP32_W5500/Async_RegexPatterns_ESP32_W5500.ino

+15-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ IPAddress myDNS(8, 8, 8, 8);
7474

7575
//////////////////////////////////////////////////////////
7676

77-
// For W5500 & ESP32-S3
77+
// For ESP32-S3
7878
// Optional values to override default settings
7979
// Don't change unless you know what you're doing
8080
//#define ETH_SPI_HOST SPI3_HOST
@@ -88,6 +88,20 @@ IPAddress myDNS(8, 8, 8, 8);
8888
//#define SCK_GPIO 12
8989
//#define CS_GPIO 10
9090

91+
// For ESP32_C3
92+
// Optional values to override default settings
93+
// Don't change unless you know what you're doing
94+
//#define ETH_SPI_HOST SPI2_HOST
95+
//#define SPI_CLOCK_MHZ 25
96+
97+
// Must connect INT to GPIOxx or not working
98+
//#define INT_GPIO 10
99+
100+
//#define MISO_GPIO 5
101+
//#define MOSI_GPIO 6
102+
//#define SCK_GPIO 4
103+
//#define CS_GPIO 7
104+
91105
//////////////////////////////////////////////////////////
92106

93107
#include <AsyncTCP.h>

examples/Async_WebSocketsServer/Async_WebSocketsServer.ino

+15-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ IPAddress myDNS(8, 8, 8, 8);
5555

5656
//////////////////////////////////////////////////////////
5757

58-
// For W5500 & ESP32-S3
58+
// For ESP32-S3
5959
// Optional values to override default settings
6060
// Don't change unless you know what you're doing
6161
//#define ETH_SPI_HOST SPI3_HOST
@@ -69,6 +69,20 @@ IPAddress myDNS(8, 8, 8, 8);
6969
//#define SCK_GPIO 12
7070
//#define CS_GPIO 10
7171

72+
// For ESP32_C3
73+
// Optional values to override default settings
74+
// Don't change unless you know what you're doing
75+
//#define ETH_SPI_HOST SPI2_HOST
76+
//#define SPI_CLOCK_MHZ 25
77+
78+
// Must connect INT to GPIOxx or not working
79+
//#define INT_GPIO 10
80+
81+
//#define MISO_GPIO 5
82+
//#define MOSI_GPIO 6
83+
//#define SCK_GPIO 4
84+
//#define CS_GPIO 7
85+
7286
//////////////////////////////////////////////////////////
7387

7488
#include <AsyncWebServer_ESP32_SC_W5500.h>

0 commit comments

Comments
 (0)