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

Commit

Permalink
v1.8.1 to remove unused variable
Browse files Browse the repository at this point in the history
#### Releases v1.8.1

1. Remove unused variable to avoid compiler warning and error
  • Loading branch information
khoih-prog authored Dec 24, 2022
1 parent a87f3d2 commit c87fe15
Show file tree
Hide file tree
Showing 47 changed files with 352 additions and 69 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Please ensure to specify the following:

* Arduino IDE version (e.g. 1.8.19) or Platform.io version
* Board type (e.g. ESP32S3_DEV, ESP32S2_DEV, ESP32C3_DEV)
* Board Core Version (e.g. ESP32 core v2.0.5)
* Board Core Version (e.g. ESP32 core v2.0.6)
* Contextual information (e.g. what you were trying to achieve)
* Simplest possible steps to reproduce
* Anything that might be relevant in your opinion, such as:
Expand All @@ -31,7 +31,7 @@ Please be educated, civilized and constructive. Disrespective posts against [Git
```
Arduino IDE version: 1.8.19
ESP32S3_DEV board
ESP32 core v2.0.5
ESP32 core v2.0.6
OS: Ubuntu 20.04 LTS
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
Expand Down
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
## Table of contents

* [Changelog](#changelog)
* [Releases v1.8.1](#releases-v181)
* [Releases v1.8.0](#releases-v180)
* [Releases v1.7.0](#releases-v170)
* [Releases v1.6.3](#releases-v163)
Expand All @@ -25,6 +26,10 @@

## Changelog

#### Releases v1.8.1

1. Remove unused variable to avoid compiler warning and error

#### Releases v1.8.0

1. Add support to `ESP32_C3` boards using `LwIP W5500 Ethernet`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ IPAddress myDNS(8, 8, 8, 8);

//////////////////////////////////////////////////////////

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

// For ESP32_C3
// Optional values to override default settings
// Don't change unless you know what you're doing
//#define ETH_SPI_HOST SPI2_HOST
//#define SPI_CLOCK_MHZ 25

// Must connect INT to GPIOxx or not working
//#define INT_GPIO 10

//#define MISO_GPIO 5
//#define MOSI_GPIO 6
//#define SCK_GPIO 4
//#define CS_GPIO 7

//////////////////////////////////////////////////////////

#include <AsyncTCP.h>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ IPAddress myDNS(8, 8, 8, 8);

//////////////////////////////////////////////////////////

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

// For ESP32_C3
// Optional values to override default settings
// Don't change unless you know what you're doing
//#define ETH_SPI_HOST SPI2_HOST
//#define SPI_CLOCK_MHZ 25

// Must connect INT to GPIOxx or not working
//#define INT_GPIO 10

//#define MISO_GPIO 5
//#define MOSI_GPIO 6
//#define SCK_GPIO 4
//#define CS_GPIO 7

//////////////////////////////////////////////////////////

#include <AsyncTCP.h>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ IPAddress myDNS(8, 8, 8, 8);

//////////////////////////////////////////////////////////

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

// For ESP32_C3
// Optional values to override default settings
// Don't change unless you know what you're doing
//#define ETH_SPI_HOST SPI2_HOST
//#define SPI_CLOCK_MHZ 25

// Must connect INT to GPIOxx or not working
//#define INT_GPIO 10

//#define MISO_GPIO 5
//#define MOSI_GPIO 6
//#define SCK_GPIO 4
//#define CS_GPIO 7

//////////////////////////////////////////////////////////

#include <AsyncTCP.h>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ IPAddress myDNS(8, 8, 8, 8);

//////////////////////////////////////////////////////////

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

// For ESP32_C3
// Optional values to override default settings
// Don't change unless you know what you're doing
//#define ETH_SPI_HOST SPI2_HOST
//#define SPI_CLOCK_MHZ 25

// Must connect INT to GPIOxx or not working
//#define INT_GPIO 10

//#define MISO_GPIO 5
//#define MOSI_GPIO 6
//#define SCK_GPIO 4
//#define CS_GPIO 7

//////////////////////////////////////////////////////////

#include <AsyncTCP.h>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ IPAddress myDNS(8, 8, 8, 8);

//////////////////////////////////////////////////////////

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

// For ESP32_C3
// Optional values to override default settings
// Don't change unless you know what you're doing
//#define ETH_SPI_HOST SPI2_HOST
//#define SPI_CLOCK_MHZ 25

// Must connect INT to GPIOxx or not working
//#define INT_GPIO 10

//#define MISO_GPIO 5
//#define MOSI_GPIO 6
//#define SCK_GPIO 4
//#define CS_GPIO 7

//////////////////////////////////////////////////////////

#include <AsyncTCP.h>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ IPAddress myDNS(8, 8, 8, 8);

//////////////////////////////////////////////////////////

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

// For ESP32_C3
// Optional values to override default settings
// Don't change unless you know what you're doing
//#define ETH_SPI_HOST SPI2_HOST
//#define SPI_CLOCK_MHZ 25

// Must connect INT to GPIOxx or not working
//#define INT_GPIO 10

//#define MISO_GPIO 5
//#define MOSI_GPIO 6
//#define SCK_GPIO 4
//#define CS_GPIO 7

//////////////////////////////////////////////////////////

#include <AsyncTCP.h>
Expand Down
16 changes: 15 additions & 1 deletion examples/Async_HelloServer/Async_HelloServer.ino
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ IPAddress myDNS(8, 8, 8, 8);

//////////////////////////////////////////////////////////

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

// For ESP32_C3
// Optional values to override default settings
// Don't change unless you know what you're doing
//#define ETH_SPI_HOST SPI2_HOST
//#define SPI_CLOCK_MHZ 25

// Must connect INT to GPIOxx or not working
//#define INT_GPIO 10

//#define MISO_GPIO 5
//#define MOSI_GPIO 6
//#define SCK_GPIO 4
//#define CS_GPIO 7

//////////////////////////////////////////////////////////

#include <AsyncTCP.h>
Expand Down
16 changes: 15 additions & 1 deletion examples/Async_HelloServer2/Async_HelloServer2.ino
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ IPAddress myDNS(8, 8, 8, 8);

//////////////////////////////////////////////////////////

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

// For ESP32_C3
// Optional values to override default settings
// Don't change unless you know what you're doing
//#define ETH_SPI_HOST SPI2_HOST
//#define SPI_CLOCK_MHZ 25

// Must connect INT to GPIOxx or not working
//#define INT_GPIO 10

//#define MISO_GPIO 5
//#define MOSI_GPIO 6
//#define SCK_GPIO 4
//#define CS_GPIO 7

//////////////////////////////////////////////////////////

#include <AsyncTCP.h>
Expand Down
16 changes: 15 additions & 1 deletion examples/Async_HttpBasicAuth/Async_HttpBasicAuth.ino
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ IPAddress myDNS(8, 8, 8, 8);

//////////////////////////////////////////////////////////

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

// For ESP32_C3
// Optional values to override default settings
// Don't change unless you know what you're doing
//#define ETH_SPI_HOST SPI2_HOST
//#define SPI_CLOCK_MHZ 25

// Must connect INT to GPIOxx or not working
//#define INT_GPIO 10

//#define MISO_GPIO 5
//#define MOSI_GPIO 6
//#define SCK_GPIO 4
//#define CS_GPIO 7

//////////////////////////////////////////////////////////

#include <AsyncWebServer_ESP32_SC_W5500.h>
Expand Down
16 changes: 15 additions & 1 deletion examples/Async_PostServer/Async_PostServer.ino
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ IPAddress myDNS(8, 8, 8, 8);

//////////////////////////////////////////////////////////

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

// For ESP32_C3
// Optional values to override default settings
// Don't change unless you know what you're doing
//#define ETH_SPI_HOST SPI2_HOST
//#define SPI_CLOCK_MHZ 25

// Must connect INT to GPIOxx or not working
//#define INT_GPIO 10

//#define MISO_GPIO 5
//#define MOSI_GPIO 6
//#define SCK_GPIO 4
//#define CS_GPIO 7

//////////////////////////////////////////////////////////

#include <AsyncTCP.h>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ IPAddress myDNS(8, 8, 8, 8);

//////////////////////////////////////////////////////////

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

// For ESP32_C3
// Optional values to override default settings
// Don't change unless you know what you're doing
//#define ETH_SPI_HOST SPI2_HOST
//#define SPI_CLOCK_MHZ 25

// Must connect INT to GPIOxx or not working
//#define INT_GPIO 10

//#define MISO_GPIO 5
//#define MOSI_GPIO 6
//#define SCK_GPIO 4
//#define CS_GPIO 7

//////////////////////////////////////////////////////////

#include <AsyncTCP.h>
Expand Down
16 changes: 15 additions & 1 deletion examples/Async_WebSocketsServer/Async_WebSocketsServer.ino
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ IPAddress myDNS(8, 8, 8, 8);

//////////////////////////////////////////////////////////

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

// For ESP32_C3
// Optional values to override default settings
// Don't change unless you know what you're doing
//#define ETH_SPI_HOST SPI2_HOST
//#define SPI_CLOCK_MHZ 25

// Must connect INT to GPIOxx or not working
//#define INT_GPIO 10

//#define MISO_GPIO 5
//#define MOSI_GPIO 6
//#define SCK_GPIO 4
//#define CS_GPIO 7

//////////////////////////////////////////////////////////

#include <AsyncWebServer_ESP32_SC_W5500.h>
Expand Down
Loading

0 comments on commit c87fe15

Please sign in to comment.