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

Commit 168ca3b

Browse files
authored
v2.8.1 to fix W6100 speed display bug
### Releases v2.8.1 1. Fix minor `speed-link-duplex` bug for `WIZNet W6100`
1 parent f3a4d61 commit 168ca3b

23 files changed

+203
-83
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. Arduino SAMDUE core v1.6.12, ESP32 core v2.0.6, ESP8266 core v3.0.2, ArduinoCore-mbed v3.4.1, etc.)
18+
* Board Core Version (e.g. Arduino SAMDUE core v1.6.12, ESP32 core v2.0.6, ESP8266 core v3.1.0, ArduinoCore-mbed v3.4.1, etc.)
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 @@ Arduino IDE version: 1.8.19
3131
RASPBERRY_PI_PICO board
3232
ArduinoCore-mbed v3.4.1
3333
OS: Ubuntu 20.04 LTS
34-
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
34+
Linux xy-Inspiron-3593 5.15.0-57-generic #63~20.04.1-Ubuntu SMP Wed Nov 30 13:40:16 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
3535
3636
Context:
3737
I encountered a crash while trying to use the library

README.md

Lines changed: 138 additions & 46 deletions
Large diffs are not rendered by default.

changelog.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616

1717

1818
* [Changelog](#changelog)
19+
* [Releases v2.8.1](#releases-v281)
1920
* [Releases v2.8.0](#releases-v280)
2021
* [Releases v2.7.1](#releases-v271)
2122
* [Releases v2.7.0](#releases-v270)
@@ -39,9 +40,13 @@
3940

4041
## Changelog
4142

43+
### Releases v2.8.1
44+
45+
1. Fix minor `speed-link-duplex` bug for `WIZNet W6100`
46+
4247
### Releases v2.8.0
4348

44-
1. Add preliminary support to `WIZNet W6100` using IPv4. IPv6 will be supported in the future.
49+
1. Add preliminary support to `WIZNet W6100` using IPv4. IPv6 will be supported in the future
4550

4651
### Releases v2.7.1
4752

keywords.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,7 @@ noChip LITERAL1
214214
w5100 LITERAL1
215215
w5200 LITERAL1
216216
w5500 LITERAL1
217+
w6100 LITERAL1
217218
UnknownChip LITERAL1
218219

219220
#################

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "Ethernet_Generic",
3-
"version": "2.8.0",
3+
"version": "2.8.1",
44
"keywords": "WebServer, Ethernet, SPI2, Teensy, SAMD, STM32, SAM DUE, nRF52, ESP32, ESP8266, rpi-pico, rp2040, W5x00, W5500, W5100s, W6100, LAN, Wiznet, WIZ550io, WIZ850io, USR-ES1",
55
"description": "Simple Ethernet library for AVR, AVR Dx, Portenta_H7, Teensy, SAM DUE, SAMD21, SAMD51, STM32F/L/H/G/WB/MP1, nRF52 and RASPBERRY_PI_PICO boards using Ethernet shields W5100, W5200, W5500, W5100S. With this library, you can use the Arduino Ethernet (shield or board) to connect to Internet. The library provides both Client and server functionalities. The library permits you to connect to a local network also with DHCP and to resolve DNS. The h-only library now supporting SPI1/SPI2, EthernetLarge, Ethernet2 and Ethernet3 features by simply changing definitions in the sketch. RASPBERRY_PI_PICO using arduino-pico core now can use SPI1. Now STM32, Arduino_mbed boards can use any custom hardware / software SPI and with fix of severe limitation to permit sending much larger data than total 2/4/8/16K buffer",
66
"authors": [

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Ethernet_Generic
2-
version=2.8.0
2+
version=2.8.1
33
author=Various (see AUTHORS file for details)
44
maintainer=Khoi Hoang <[email protected]>
55
sentence=Simple Ethernet library for AVR, AVR Dx, Portenta_H7, Teensy, SAM DUE, SAMD21, SAMD51, STM32F/L/H/G/WB/MP1, nRF52 and RASPBERRY_PI_PICO boards using Ethernet shields W5100, W5200, W5500, W5100S

src/Dhcp.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
1414
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer
1515
16-
Version: 2.8.0
16+
Version: 2.8.1
1717
1818
Version Modified By Date Comments
1919
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
2.7.0 K Hoang 14/11/2022 Fix severe limitation to permit sending larger data than 2/4/8/16K buffer
2626
2.7.1 K Hoang 15/11/2022 Auto-detect W5x00 and settings to set MAX_SIZE to send
2727
2.8.0 K Hoang 27/12/2022 Add support to W6100 using IPv4
28+
2.8.1 K Hoang 06/01/2023 Fix W6100 minor bug
2829
*****************************************************************************************************************************/
2930

3031
// DHCP Library v0.3 - April 25, 2009

src/Dhcp_Impl.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3333
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3434
35-
Version: 2.8.0
35+
Version: 2.8.1
3636
3737
Version Modified By Date Comments
3838
------- ----------- ---------- -----------
@@ -44,6 +44,7 @@
4444
2.7.0 K Hoang 14/11/2022 Fix severe limitation to permit sending larger data than 2/4/8/16K buffer
4545
2.7.1 K Hoang 15/11/2022 Auto-detect W5x00 and settings to set MAX_SIZE to send
4646
2.8.0 K Hoang 27/12/2022 Add support to W6100 using IPv4
47+
2.8.1 K Hoang 06/01/2023 Fix W6100 minor bug
4748
*****************************************************************************************************************************/
4849

4950
// DHCP Library v0.3 - April 25, 2009

src/Dns.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
1414
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer
1515
16-
Version: 2.8.0
16+
Version: 2.8.1
1717
1818
Version Modified By Date Comments
1919
------- ----------- ---------- -----------
@@ -25,6 +25,7 @@
2525
2.7.0 K Hoang 14/11/2022 Fix severe limitation to permit sending larger data than 2/4/8/16K buffer
2626
2.7.1 K Hoang 15/11/2022 Auto-detect W5x00 and settings to set MAX_SIZE to send
2727
2.8.0 K Hoang 27/12/2022 Add support to W6100 using IPv4
28+
2.8.1 K Hoang 06/01/2023 Fix W6100 minor bug
2829
*****************************************************************************************************************************/
2930

3031
// Arduino DNS client for WizNet5100-based Ethernet shield

src/Dns_Impl.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
3333
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3434
35-
Version: 2.8.0
35+
Version: 2.8.1
3636
3737
Version Modified By Date Comments
3838
------- ----------- ---------- -----------
@@ -44,6 +44,7 @@
4444
2.7.0 K Hoang 14/11/2022 Fix severe limitation to permit sending larger data than 2/4/8/16K buffer
4545
2.7.1 K Hoang 15/11/2022 Auto-detect W5x00 and settings to set MAX_SIZE to send
4646
2.8.0 K Hoang 27/12/2022 Add support to W6100 using IPv4
47+
2.8.1 K Hoang 06/01/2023 Fix W6100 minor bug
4748
*****************************************************************************************************************************/
4849
// Arduino DNS client for WizNet5100-based Ethernet shield
4950
// (c) Copyright 2009-2010 MCQN Ltd.

0 commit comments

Comments
 (0)