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

Commit 092d5b4

Browse files
authored
v1.0.1 add support to W5x00 Ethernet shields
### New in Version v1.0.1 1. Add support to ***W5x00*** Ethernet shields to all STM32 boards having 64+K bytes Flash.
1 parent 07ce1b1 commit 092d5b4

19 files changed

+175
-61
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,18 @@
22

33
[![arduino-library-badge](https://www.ardu-badge.com/badge/EthernetWebServer_STM32.svg?)](https://www.ardu-badge.com/EthernetWebServer_STM32)
44

5+
### New in Version v1.0.1
6+
7+
1. Add support to ***W5x00*** Ethernet shields to all STM32 boards having 64+K bytes Flash.
8+
59
This library currently supports
610
1. STM32 boards with built-in Ethernet such as :
711
- ***Nucleo-144 (F429ZI, F767ZI)***
812
- ***Discovery (STM32F746G-DISCOVERY)***
913
- ***All STM32 Boards with Built-in Ethernet***, See [How To Use Built-in Ethernet](https://github.com/khoih-prog/EthernetWebServer_STM32/issues/1)
10-
2. ***STM32 boards (with 64+K Flash) running EMC28J60 shields***
11-
3. See [EthernetWebServer Library Issue 1](https://github.com/khoih-prog/EthernetWebServer/issues/1) for reason to create this separate library from [EthernetWebServer library](https://github.com/khoih-prog/EthernetWebServer)
14+
2. ***STM32 boards (with 64+K Flash) running ENC28J60 shields***
15+
3. ***STM32 boards (with 64+K Flash) running W5x00 shields***
16+
4. See [EthernetWebServer Library Issue 1](https://github.com/khoih-prog/EthernetWebServer/issues/1) for reason to create this separate library from [EthernetWebServer library](https://github.com/khoih-prog/EthernetWebServer)
1217

1318
This is simple yet complete WebServer library for `STM32` boards running built-in Ethernet (Nucleo-144, Discovery) or EMC28J60 Ethernet shields. The functions are similar and compatible to ESP8266/ESP32 WebServer libraries to make life much easier to port sketches from ESP8266/ESP32.
1419

@@ -333,6 +338,9 @@ HTTP EthernetWebServer is @ IP : 192.168.2.100
333338
</g>
334339
</svg>
335340
```
341+
### Version v1.0.1
342+
343+
1. Add support to W5x00 Ethernet shields to all STM32 boards having 64+K bytes Flash.
336344
337345
### Version v1.0.0
338346

examples/AdvancedWebServer/AdvancedWebServer.ino

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* Forked and modified from ESP8266 https://github.com/esp8266/Arduino/releases
99
* Built by Khoi Hoang https://github.com/khoih-prog/ESP8266_AT_WebServer
1010
* Licensed under MIT license
11-
* Version: 1.0.0
11+
* Version: 1.0.1
1212
*
1313
* Copyright (c) 2015, Majenko Technologies
1414
* All rights reserved.
@@ -44,18 +44,23 @@
4444
*
4545
* Version Modified By Date Comments
4646
* ------- ----------- ---------- -----------
47-
* 1.0.0 K Hoang 13/02/2020 Initial coding for STM32 with built-in Ethernet (Nucleo-144, DISCOVERY, etc)
47+
* 1.0.0 K Hoang 26/02/2020 Initial coding for STM32 with built-in Ethernet (Nucleo-144, DISCOVERY, etc) and ENC28J60
48+
* 1.0.1 K Hoang 28/02/2020 Add W5x00 Ethernet shields using Ethernet library
4849
*****************************************************************************************************************************/
4950
/*
5051
* Currently support
5152
* 1) STM32 boards with built-in Ethernet (to use USE_BUILTIN_ETHERNET = true) such as :
5253
* - Nucleo-144 (F429ZI, F767ZI)
5354
* - Discovery (STM32F746G-DISCOVERY)
55+
* - All STM32 Boards with Built-in Ethernet, See How To Use Built-in Ethernet at (https://github.com/khoih-prog/EthernetWebServer_STM32/issues/1)
5456
* 2) STM32 boards (with 64+K Flash) running EMC28J60 shields (to use USE_BUILTIN_ETHERNET = false)
57+
* 3) STM32 boards (with 32+K Flash) running W5x00 Ethernet shields
5558
*
5659
*/
5760

58-
#define USE_BUILTIN_ETHERNET false //true
61+
#define USE_BUILTIN_ETHERNET false //true
62+
// If don't use USE_BUILTIN_ETHERNET, and USE_UIP_ETHERNET => use W5x00 with Ethernet library
63+
#define USE_UIP_ETHERNET false
5964

6065
#include <EthernetWebServer_STM32.h>
6166

examples/HelloServer/HelloServer.ino

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,31 @@
88
* Forked and modified from ESP8266 https://github.com/esp8266/Arduino/releases
99
* Built by Khoi Hoang https://github.com/khoih-prog/ESP8266_AT_WebServer
1010
* Licensed under MIT license
11-
* Version: 1.0.0
11+
* Version: 1.0.1
1212
*
1313
* Original author:
1414
* @file Esp8266WebServer.h
1515
* @author Ivan Grokhotkov
1616
*
1717
* Version Modified By Date Comments
1818
* ------- ----------- ---------- -----------
19-
* 1.0.0 K Hoang 13/02/2020 Initial coding for STM32 with built-in Ethernet (Nucleo-144, DISCOVERY, etc)
19+
* 1.0.0 K Hoang 26/02/2020 Initial coding for STM32 with built-in Ethernet (Nucleo-144, DISCOVERY, etc) and ENC28J60
20+
* 1.0.1 K Hoang 28/02/2020 Add W5x00 Ethernet shields using Ethernet library
2021
*****************************************************************************************************************************/
2122
/*
2223
* Currently support
2324
* 1) STM32 boards with built-in Ethernet (to use USE_BUILTIN_ETHERNET = true) such as :
2425
* - Nucleo-144 (F429ZI, F767ZI)
2526
* - Discovery (STM32F746G-DISCOVERY)
27+
* - All STM32 Boards with Built-in Ethernet, See How To Use Built-in Ethernet at (https://github.com/khoih-prog/EthernetWebServer_STM32/issues/1)
2628
* 2) STM32 boards (with 64+K Flash) running EMC28J60 shields (to use USE_BUILTIN_ETHERNET = false)
29+
* 3) STM32 boards (with 32+K Flash) running W5x00 Ethernet shields
2730
*
2831
*/
2932

30-
#define USE_BUILTIN_ETHERNET false //true
33+
#define USE_BUILTIN_ETHERNET false //true
34+
// If don't use USE_BUILTIN_ETHERNET, and USE_UIP_ETHERNET => use W5x00 with Ethernet library
35+
#define USE_UIP_ETHERNET false
3136

3237
#include <EthernetWebServer_STM32.h>
3338

examples/HelloServer2/HelloServer2.ino

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,31 @@
88
* Forked and modified from ESP8266 https://github.com/esp8266/Arduino/releases
99
* Built by Khoi Hoang https://github.com/khoih-prog/ESP8266_AT_WebServer
1010
* Licensed under MIT license
11-
* Version: 1.0.0
11+
* Version: 1.0.1
1212
*
1313
* Original author:
1414
* @file Esp8266WebServer.h
1515
* @author Ivan Grokhotkov
1616
*
1717
* Version Modified By Date Comments
1818
* ------- ----------- ---------- -----------
19-
* 1.0.0 K Hoang 13/02/2020 Initial coding for STM32 with built-in Ethernet (Nucleo-144, DISCOVERY, etc)
19+
* 1.0.0 K Hoang 26/02/2020 Initial coding for STM32 with built-in Ethernet (Nucleo-144, DISCOVERY, etc) and ENC28J60
20+
* 1.0.1 K Hoang 28/02/2020 Add W5x00 Ethernet shields using Ethernet library
2021
*****************************************************************************************************************************/
2122
/*
2223
* Currently support
2324
* 1) STM32 boards with built-in Ethernet (to use USE_BUILTIN_ETHERNET = true) such as :
2425
* - Nucleo-144 (F429ZI, F767ZI)
2526
* - Discovery (STM32F746G-DISCOVERY)
27+
* - All STM32 Boards with Built-in Ethernet, See How To Use Built-in Ethernet at (https://github.com/khoih-prog/EthernetWebServer_STM32/issues/1)
2628
* 2) STM32 boards (with 64+K Flash) running EMC28J60 shields (to use USE_BUILTIN_ETHERNET = false)
29+
* 3) STM32 boards (with 32+K Flash) running W5x00 Ethernet shields
2730
*
2831
*/
2932

30-
#define USE_BUILTIN_ETHERNET false //true
33+
#define USE_BUILTIN_ETHERNET false //true
34+
// If don't use USE_BUILTIN_ETHERNET, and USE_UIP_ETHERNET => use W5x00 with Ethernet library
35+
#define USE_UIP_ETHERNET false
3136

3237
#include <EthernetWebServer_STM32.h>
3338

examples/HttpBasicAuth/HttpBasicAuth.ino

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,31 @@
88
* Forked and modified from ESP8266 https://github.com/esp8266/Arduino/releases
99
* Built by Khoi Hoang https://github.com/khoih-prog/ESP8266_AT_WebServer
1010
* Licensed under MIT license
11-
* Version: 1.0.0
11+
* Version: 1.0.1
1212
*
1313
* Original author:
1414
* @file Esp8266WebServer.h
1515
* @author Ivan Grokhotkov
1616
*
1717
* Version Modified By Date Comments
1818
* ------- ----------- ---------- -----------
19-
* 1.0.0 K Hoang 13/02/2020 Initial coding for STM32 with built-in Ethernet (Nucleo-144, DISCOVERY, etc)
19+
* 1.0.0 K Hoang 26/02/2020 Initial coding for STM32 with built-in Ethernet (Nucleo-144, DISCOVERY, etc) and ENC28J60
20+
* 1.0.1 K Hoang 28/02/2020 Add W5x00 Ethernet shields using Ethernet library
2021
*****************************************************************************************************************************/
2122
/*
2223
* Currently support
2324
* 1) STM32 boards with built-in Ethernet (to use USE_BUILTIN_ETHERNET = true) such as :
2425
* - Nucleo-144 (F429ZI, F767ZI)
2526
* - Discovery (STM32F746G-DISCOVERY)
27+
* - All STM32 Boards with Built-in Ethernet, See How To Use Built-in Ethernet at (https://github.com/khoih-prog/EthernetWebServer_STM32/issues/1)
2628
* 2) STM32 boards (with 64+K Flash) running EMC28J60 shields (to use USE_BUILTIN_ETHERNET = false)
29+
* 3) STM32 boards (with 32+K Flash) running W5x00 Ethernet shields
2730
*
2831
*/
2932

30-
#define USE_BUILTIN_ETHERNET false //true
33+
#define USE_BUILTIN_ETHERNET false //true
34+
// If don't use USE_BUILTIN_ETHERNET, and USE_UIP_ETHERNET => use W5x00 with Ethernet library
35+
#define USE_UIP_ETHERNET false
3136

3237
#include <EthernetWebServer_STM32.h>
3338

examples/PostServer/PostServer.ino

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,31 @@
88
* Forked and modified from ESP8266 https://github.com/esp8266/Arduino/releases
99
* Built by Khoi Hoang https://github.com/khoih-prog/ESP8266_AT_WebServer
1010
* Licensed under MIT license
11-
* Version: 1.0.0
11+
* Version: 1.0.1
1212
*
1313
* Original author:
1414
* @file Esp8266WebServer.h
1515
* @author Ivan Grokhotkov
1616
*
1717
* Version Modified By Date Comments
1818
* ------- ----------- ---------- -----------
19-
* 1.0.0 K Hoang 13/02/2020 Initial coding for STM32 with built-in Ethernet (Nucleo-144, DISCOVERY, etc)
19+
* 1.0.0 K Hoang 26/02/2020 Initial coding for STM32 with built-in Ethernet (Nucleo-144, DISCOVERY, etc) and ENC28J60
20+
* 1.0.1 K Hoang 28/02/2020 Add W5x00 Ethernet shields using Ethernet library
2021
*****************************************************************************************************************************/
2122
/*
2223
* Currently support
2324
* 1) STM32 boards with built-in Ethernet (to use USE_BUILTIN_ETHERNET = true) such as :
2425
* - Nucleo-144 (F429ZI, F767ZI)
2526
* - Discovery (STM32F746G-DISCOVERY)
27+
* - All STM32 Boards with Built-in Ethernet, See How To Use Built-in Ethernet at (https://github.com/khoih-prog/EthernetWebServer_STM32/issues/1)
2628
* 2) STM32 boards (with 64+K Flash) running EMC28J60 shields (to use USE_BUILTIN_ETHERNET = false)
29+
* 3) STM32 boards (with 32+K Flash) running W5x00 Ethernet shields
2730
*
2831
*/
2932

30-
#define USE_BUILTIN_ETHERNET false //true
33+
#define USE_BUILTIN_ETHERNET false //true
34+
// If don't use USE_BUILTIN_ETHERNET, and USE_UIP_ETHERNET => use W5x00 with Ethernet library
35+
#define USE_UIP_ETHERNET false
3136

3237
#include <EthernetWebServer_STM32.h>
3338

examples/SimpleAuthentication/SimpleAuthentication.ino

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,26 +8,31 @@
88
* Forked and modified from ESP8266 https://github.com/esp8266/Arduino/releases
99
* Built by Khoi Hoang https://github.com/khoih-prog/ESP8266_AT_WebServer
1010
* Licensed under MIT license
11-
* Version: 1.0.0
11+
* Version: 1.0.1
1212
*
1313
* Original author:
1414
* @file Esp8266WebServer.h
1515
* @author Ivan Grokhotkov
1616
*
1717
* Version Modified By Date Comments
1818
* ------- ----------- ---------- -----------
19-
* 1.0.0 K Hoang 13/02/2020 Initial coding for STM32 with built-in Ethernet (Nucleo-144, DISCOVERY, etc)
19+
* 1.0.0 K Hoang 26/02/2020 Initial coding for STM32 with built-in Ethernet (Nucleo-144, DISCOVERY, etc) and ENC28J60
20+
* 1.0.1 K Hoang 28/02/2020 Add W5x00 Ethernet shields using Ethernet library
2021
*****************************************************************************************************************************/
2122
/*
2223
* Currently support
2324
* 1) STM32 boards with built-in Ethernet (to use USE_BUILTIN_ETHERNET = true) such as :
2425
* - Nucleo-144 (F429ZI, F767ZI)
2526
* - Discovery (STM32F746G-DISCOVERY)
27+
* - All STM32 Boards with Built-in Ethernet, See How To Use Built-in Ethernet at (https://github.com/khoih-prog/EthernetWebServer_STM32/issues/1)
2628
* 2) STM32 boards (with 64+K Flash) running EMC28J60 shields (to use USE_BUILTIN_ETHERNET = false)
29+
* 3) STM32 boards (with 32+K Flash) running W5x00 Ethernet shields
2730
*
2831
*/
2932

30-
#define USE_BUILTIN_ETHERNET false //true
33+
#define USE_BUILTIN_ETHERNET false //true
34+
// If don't use USE_BUILTIN_ETHERNET, and USE_UIP_ETHERNET => use W5x00 with Ethernet library
35+
#define USE_UIP_ETHERNET false
3136

3237
#include <EthernetWebServer_STM32.h>
3338

library.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "EthernetWebServer_STM32",
3-
"keywords": "WebServer, built-in Ethernet, Arduino, STM32, Ethernet shield, Nucleo-144",
3+
"keywords": "WebServer, built-in Ethernet, Arduino, STM32, Ethernet shield, Nucleo-144, ENC28J60, W5x00",
44
"description": "Simple EthernetWebServer library for STM32 boards running built-in Ethernet or Ethernet shields",
55
"repository":
66
{
@@ -9,5 +9,5 @@
99
},
1010
"frameworks": "arduino",
1111
"platforms": "ststm32",
12-
"version": "1.0.0"
12+
"version": "1.0.1"
1313
}

library.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
name=EthernetWebServer_STM32
2-
version=1.0.0
2+
version=1.0.1
33
author=Khoi Hoang
44
license=MIT
55
maintainer=Khoi Hoang <khoih.prog@gmail.com>
66
sentence=EthernetWebServer is a library for STM32 boards running WebServer using built-in Ethernet or Ethernet shields
7-
paragraph=The library supports HTTP GET and POST requests, provides argument parsing, handles one client at a time. It supports Arduino boards (STM32F series with 64+Kbytes of Flash) using built-in Ethernet (Nucleo-144: F429ZI, F767ZI, Discovery: STM32F746G-DISCOVERY) or ENC28j60 network shields.
7+
paragraph=The library supports HTTP GET and POST requests, provides argument parsing, handles one client at a time. It supports Arduino boards (STM32F series with 64+Kbytes of Flash) using built-in Ethernet (Nucleo-144: F429ZI, F767ZI, Discovery: STM32F746G-DISCOVERY), ENC28J60 or W5x00 Ethernet shields.
88
category=Communication
99
url=https://github.com/khoih-prog/EthernetWebServer_STM32
1010
architectures=stm32

src/EthernetWebServer_STM32-impl.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@
77
* Forked and modified from ESP8266 https://github.com/esp8266/Arduino/releases
88
* Built by Khoi Hoang https://github.com/khoih-prog/ESP8266_AT_WebServer
99
* Licensed under MIT license
10-
* Version: 1.0.0
10+
* Version: 1.0.1
1111
*
1212
* Original author:
1313
* @file Esp8266WebServer.h
1414
* @author Ivan Grokhotkov
1515
*
1616
* Version Modified By Date Comments
1717
* ------- ----------- ---------- -----------
18-
* 1.0.0 K Hoang 13/02/2020 Initial coding for STM32 with built-in Ethernet (Nucleo-144, DISCOVERY, etc)
18+
* 1.0.0 K Hoang 26/02/2020 Initial coding for STM32 with built-in Ethernet (Nucleo-144, DISCOVERY, etc) and ENC28J60
19+
* 1.0.1 K Hoang 28/02/2020 Add W5x00 Ethernet shields using Ethernet library
1920
*****************************************************************************************************************************/
2021

2122
#ifndef EthernetWebServer_STM32_impl_h

src/EthernetWebServer_STM32.h

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@
77
* Forked and modified from ESP8266 https://github.com/esp8266/Arduino/releases
88
* Built by Khoi Hoang https://github.com/khoih-prog/ESP8266_AT_WebServer
99
* Licensed under MIT license
10-
* Version: 1.0.0
10+
* Version: 1.0.1
1111
*
1212
* Original author:
1313
* @file Esp8266WebServer.h
1414
* @author Ivan Grokhotkov
1515
*
1616
* Version Modified By Date Comments
1717
* ------- ----------- ---------- -----------
18-
* 1.0.0 K Hoang 13/02/2020 Initial coding for STM32 with built-in Ethernet (Nucleo-144, DISCOVERY, etc)
18+
* 1.0.0 K Hoang 26/02/2020 Initial coding for STM32 with built-in Ethernet (Nucleo-144, DISCOVERY, etc) and ENC28J60
19+
* 1.0.1 K Hoang 28/02/2020 Add W5x00 Ethernet shields using Ethernet library
1920
*****************************************************************************************************************************/
2021

2122
#ifndef EthernetWebServer_STM32_h
@@ -32,9 +33,14 @@
3233
#if USE_BUILTIN_ETHERNET
3334
#include <LwIP.h>
3435
#include <STM32Ethernet.h>
35-
#else
36+
#warning Use built-in STM32 Ethernet
37+
#elif USE_UIP_ETHERNET
3638
#include <UIPEthernet.h>
3739
#include <utility/logging.h>
40+
#warning Use ENC28J60 Ethernet shield
41+
#else
42+
#include <Ethernet.h>
43+
#warning Use W5x00 Ethernet shield
3844
#endif
3945

4046
enum HTTPMethod { HTTP_ANY, HTTP_GET, HTTP_POST, HTTP_PUT, HTTP_PATCH, HTTP_DELETE, HTTP_OPTIONS };

src/Parsing_STM32-impl.h

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,18 @@
77
* Forked and modified from ESP8266 https://github.com/esp8266/Arduino/releases
88
* Built by Khoi Hoang https://github.com/khoih-prog/ESP8266_AT_WebServer
99
* Licensed under MIT license
10-
* Version: 1.0.0
10+
* Version: 1.0.1
1111
*
1212
* Original author:
1313
* @file Esp8266WebServer.h
1414
* @author Ivan Grokhotkov
1515
*
1616
* Version Modified By Date Comments
1717
* ------- ----------- ---------- -----------
18-
* 1.0.0 K Hoang 13/02/2020 Initial coding for STM32 with built-in Ethernet (Nucleo-144, DISCOVERY, etc)
18+
* 1.0.0 K Hoang 26/02/2020 Initial coding for STM32 with built-in Ethernet (Nucleo-144, DISCOVERY, etc) and ENC28J60
19+
* 1.0.1 K Hoang 28/02/2020 Add W5x00 Ethernet shields using Ethernet library
1920
*****************************************************************************************************************************/
21+
2022
#ifndef Parsing_STM32_impl_h
2123
#define Parsing_STM32_impl_h
2224

src/detail/Debug_STM32.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@
77
* Forked and modified from ESP8266 https://github.com/esp8266/Arduino/releases
88
* Built by Khoi Hoang https://github.com/khoih-prog/ESP8266_AT_WebServer
99
* Licensed under MIT license
10-
* Version: 1.0.0
10+
* Version: 1.0.1
1111
*
1212
* Original author:
1313
* @file Esp8266WebServer.h
1414
* @author Ivan Grokhotkov
1515
*
1616
* Version Modified By Date Comments
1717
* ------- ----------- ---------- -----------
18-
* 1.0.0 K Hoang 13/02/2020 Initial coding for STM32 with built-in Ethernet (Nucleo-144, DISCOVERY, etc)
18+
* 1.0.0 K Hoang 26/02/2020 Initial coding for STM32 with built-in Ethernet (Nucleo-144, DISCOVERY, etc) and ENC28J60
19+
* 1.0.1 K Hoang 28/02/2020 Add W5x00 Ethernet shields using Ethernet library
1920
*****************************************************************************************************************************/
2021

2122
#ifndef EthernetWebServer_STM32_Debug_H

src/detail/RequestHandler_STM32.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@
77
* Forked and modified from ESP8266 https://github.com/esp8266/Arduino/releases
88
* Built by Khoi Hoang https://github.com/khoih-prog/ESP8266_AT_WebServer
99
* Licensed under MIT license
10-
* Version: 1.0.0
10+
* Version: 1.0.1
1111
*
1212
* Original author:
1313
* @file Esp8266WebServer.h
1414
* @author Ivan Grokhotkov
1515
*
1616
* Version Modified By Date Comments
1717
* ------- ----------- ---------- -----------
18-
* 1.0.0 K Hoang 13/02/2020 Initial coding for STM32 with built-in Ethernet (Nucleo-144, DISCOVERY, etc)
18+
* 1.0.0 K Hoang 26/02/2020 Initial coding for STM32 with built-in Ethernet (Nucleo-144, DISCOVERY, etc) and ENC28J60
19+
* 1.0.1 K Hoang 28/02/2020 Add W5x00 Ethernet shields using Ethernet library
1920
*****************************************************************************************************************************/
2021

2122
#ifndef RequestHandler_STM32_h

0 commit comments

Comments
 (0)