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

Commit 9a36f4c

Browse files
authored
v1.6.0 for WizNet W6100
#### Releases v1.6.0 1. Add support to WIZNet `W6100` using [`Ethernet_Generic`](https://github.com/khoih-prog/Ethernet_Generic) library
1 parent 9172e71 commit 9a36f4c

7 files changed

+21
-12
lines changed

changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717

1818

1919
* [Changelog](#changelog)
20+
* [Releases v1.6.0](#releases-v160)
2021
* [Releases v1.5.0](#releases-v150)
2122
* [Releases v1.4.0](#releases-v140)
2223
* [Releases v1.3.0](#releases-v130)
@@ -30,6 +31,10 @@
3031

3132
## Changelog
3233

34+
#### Releases v1.6.0
35+
36+
1. Add support to WIZNet `W6100` using [`Ethernet_Generic`](https://github.com/khoih-prog/Ethernet_Generic) library
37+
3338
#### Releases v1.5.0
3439

3540
1. Add support to `RP2040W` with `CYW43439` WiFi using `arduino-pico` core

library.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "FTPClient_Generic",
3-
"version": "1.5.0",
4-
"description": "FTP Client for Generic boards such as AVR Mega, megaAVR, Portenta_H7, Teensy, SAM DUE, SAMD21, SAMD51, STM32F/L/H/G/WB/MP1, nRF52, RP2040-based (Nano-RP2040-Connect, RASPBERRY_PI_PICO, RP2040W, etc.), ESP32/ESP8266 using Ethernet. FTP Client can use WiFi (ESP_WiFi, Portenta_H7 WiFi, WiFiNINA, WiFi101, RP2040W, U-Blox W101, W102, ESP8266/ESP32-AT), Ethernet W5100, W5100S, W5200, W5500, ENC28J60, Portenta_H7 Ethernet or Teensy 4.1 NativeEthernet/QNEthernet. Now supporting other new FTP Servers, such as `vsftpd` in Linux, Ubuntu, Rasbberry Pi, etc. and ESP32/ESP8266 using Ethernet W5x00 or ENC28J60",
5-
"keywords": "communication, data, ftp, ftp-client, wifi, WiFiNINA, ethernet, teensy, teensy41, qnethernet, native-ethernet, w5x00, ethernet-generic, portenta-h7, rp2040, SAM-DUE, SAMD, STM32, nRF52, mega-avr",
3+
"version": "1.6.0",
4+
"description": "FTP Client for Generic boards such as AVR Mega, megaAVR, Portenta_H7, Teensy, SAM DUE, SAMD21, SAMD51, STM32F/L/H/G/WB/MP1, nRF52, RP2040-based (Nano-RP2040-Connect, RASPBERRY_PI_PICO, RP2040W, etc.), ESP32/ESP8266 using Ethernet. FTP Client can use WiFi (ESP_WiFi, Portenta_H7 WiFi, WiFiNINA, WiFi101, RP2040W, U-Blox W101, W102, ESP8266/ESP32-AT), Ethernet W5100, W5100S, W5200, W5500, W6100, ENC28J60, Portenta_H7 Ethernet or Teensy 4.1 NativeEthernet/QNEthernet. Now supporting other new FTP Servers, such as `vsftpd` in Linux, Ubuntu, Rasbberry Pi, etc. and ESP32/ESP8266 using Ethernet W5x00 or ENC28J60",
5+
"keywords": "communication, data, ftp, ftp-client, wifi, WiFiNINA, ethernet, teensy, teensy41, qnethernet, native-ethernet, w5x00, w6100, ethernet-generic, portenta-h7, rp2040, SAM-DUE, SAMD, STM32, nRF52, mega-avr",
66
"authors": [
77
{
88
"name": "Leonardo Bispo",

library.properties

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name=FTPClient_Generic
2-
version=1.5.0
2+
version=1.6.0
33
author=Leonardo Bispo <l.bispo@live.com>, Khoi Hoang
44
maintainer=Khoi Hoang <khoih.prog@gmail.com>
55
license=MIT
66
sentence=FTP Client for Generic boards such as AVR Mega, megaAVR, Portenta_H7, Teensy, SAM DUE, SAMD21, SAMD51, STM32F/L/H/G/WB/MP1, nRF52, RP2040-based (Nano-RP2040-Connect, RASPBERRY_PI_PICO, RP2040W, etc.), ESP32/ESP8266 using Ethernet
7-
paragraph=FTP Client can use WiFi (ESP_WiFi, Portenta_H7 WiFi, WiFiNINA, WiFi101, RP2040W, U-Blox W101, W102, ESP8266/ESP32-AT), Ethernet W5100, W5100S, W5200, W5500, ENC28J60, Portenta_H7 Ethernet or Teensy 4.1 NativeEthernet/QNEthernet. Now supporting other new FTP Servers, such as `vsftpd` in Linux, Ubuntu, Rasbberry Pi, etc. and ESP32/ESP8266 using Ethernet W5x00 or ENC28J60
7+
paragraph=FTP Client can use WiFi (ESP_WiFi, Portenta_H7 WiFi, WiFiNINA, WiFi101, RP2040W, U-Blox W101, W102, ESP8266/ESP32-AT), Ethernet W5100, W5100S, W5200, W5500, W6100, ENC28J60, Portenta_H7 Ethernet or Teensy 4.1 NativeEthernet/QNEthernet. Now supporting other new FTP Servers, such as `vsftpd` in Linux, Ubuntu, Rasbberry Pi, etc. and ESP32/ESP8266 using Ethernet W5500, W6100 or ENC28J60
88
category=Communication
99
url=https://github.com/khoih-prog/FTPClient_Generic
1010
architectures=*

src/FTPClient_Generic.h

+5-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
1010
Built by Khoi Hoang https://github.com/khoih-prog/FTPClient_Generic
1111
12-
Version: 1.5.0
12+
Version: 1.6.0
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
@@ -20,6 +20,7 @@
2020
1.3.0 K Hoang 16/05/2022 Fix uploading issue of large files for WiFi, QNEthernet
2121
1.4.0 K Hoang 05/11/2022 Add support to ESP32/ESP8266 using Ethernet W5x00 or ENC28J60
2222
1.5.0 K Hoang 20/01/2023 Add support to RP2040W using `arduino-pico` core
23+
1.5.0 K Hoang 20/01/2023 Add support to Ethernet W6100 using Ethernet_Generic library
2324
*****************************************************************************************************************************/
2425

2526
#pragma once
@@ -29,13 +30,13 @@
2930

3031
/////////////////////////////////////////////////////////
3132

32-
#define FTPCLIENT_GENERIC_VERSION "FTPCLIENT_GENERIC v1.5.0"
33+
#define FTPCLIENT_GENERIC_VERSION "FTPCLIENT_GENERIC v1.6.0"
3334

3435
#define FTPCLIENT_GENERIC_VERSION_MAJOR 1
35-
#define FTPCLIENT_GENERIC_VERSION_MINOR 5
36+
#define FTPCLIENT_GENERIC_VERSION_MINOR 6
3637
#define FTPCLIENT_GENERIC_VERSION_PATCH 0
3738

38-
#define FTPCLIENT_GENERIC_VERSION_INT 1005000
39+
#define FTPCLIENT_GENERIC_VERSION_INT 1006000
3940

4041
/////////////////////////////////////////////////////////
4142

src/FTPClient_Generic.hpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
1010
Built by Khoi Hoang https://github.com/khoih-prog/FTPClient_Generic
1111
12-
Version: 1.5.0
12+
Version: 1.6.0
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
@@ -20,6 +20,7 @@
2020
1.3.0 K Hoang 16/05/2022 Fix uploading issue of large files for WiFi, QNEthernet
2121
1.4.0 K Hoang 05/11/2022 Add support to ESP32/ESP8266 using Ethernet W5x00 or ENC28J60
2222
1.5.0 K Hoang 20/01/2023 Add support to RP2040W using `arduino-pico` core
23+
1.5.0 K Hoang 20/01/2023 Add support to Ethernet W6100 using Ethernet_Generic library
2324
*****************************************************************************************************************************/
2425

2526
#pragma once

src/FTPClient_Generic_Debug.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
1010
Built by Khoi Hoang https://github.com/khoih-prog/FTPClient_Generic
1111
12-
Version: 1.5.0
12+
Version: 1.6.0
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
@@ -20,6 +20,7 @@
2020
1.3.0 K Hoang 16/05/2022 Fix uploading issue of large files for WiFi, QNEthernet
2121
1.4.0 K Hoang 05/11/2022 Add support to ESP32/ESP8266 using Ethernet W5x00 or ENC28J60
2222
1.5.0 K Hoang 20/01/2023 Add support to RP2040W using `arduino-pico` core
23+
1.5.0 K Hoang 20/01/2023 Add support to Ethernet W6100 using Ethernet_Generic library
2324
*****************************************************************************************************************************/
2425

2526
#pragma once

src/FTPClient_Generic_Impl.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
1010
Built by Khoi Hoang https://github.com/khoih-prog/FTPClient_Generic
1111
12-
Version: 1.5.0
12+
Version: 1.6.0
1313
1414
Version Modified By Date Comments
1515
------- ----------- ---------- -----------
@@ -20,6 +20,7 @@
2020
1.3.0 K Hoang 16/05/2022 Fix uploading issue of large files for WiFi, QNEthernet
2121
1.4.0 K Hoang 05/11/2022 Add support to ESP32/ESP8266 using Ethernet W5x00 or ENC28J60
2222
1.5.0 K Hoang 20/01/2023 Add support to RP2040W using `arduino-pico` core
23+
1.5.0 K Hoang 20/01/2023 Add support to Ethernet W6100 using Ethernet_Generic library
2324
*****************************************************************************************************************************/
2425

2526
#pragma once

0 commit comments

Comments
 (0)