You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 29, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+14-14Lines changed: 14 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -95,7 +95,7 @@ void loop(void)
95
95
-***Nucleo-144 (F429ZI, F767ZI)***
96
96
-***Discovery (STM32F746G-DISCOVERY)***
97
97
-***All STM32 boards (STM32F/L/H/G/WB/MP1) with 32K+ Flash, with Built-in Ethernet***
98
-
- See [How To Use Built-in Ethernet](https://github.com/khoih-prog/EthernetWebServer_STM32/issues/1)
98
+
- See [EthernetWebServer_STM32 Support and Test Results](https://github.com/khoih-prog/EthernetWebServer_STM32/issues/1)
99
99
100
100
2.***STM32F/L/H/G/WB/MP1 boards (with 32+K Flash) running W5x00 or ENC28J60 shields)***
101
101
@@ -129,11 +129,11 @@ The library supports:
129
129
2. HTTP Server and Client
130
130
3. HTTP GET and POST requests, provides argument parsing, handles one client at a time.
131
131
132
-
Library is based on and modified from [Ivan Grokhotkov's ESP8266WebServer](https://github.com/esp8266/Arduino/tree/master/libraries/ESP8266WebServer).
132
+
Library is based on and modified from [`Ivan Grokhotkov's ESP8266WebServer`](https://github.com/esp8266/Arduino/tree/master/libraries/ESP8266WebServer).
133
133
134
134
The EthernetWebServer class found in `EthernetWebServer_STM32.h` header, is a simple web server that knows how to handle HTTP requests such as GET and POST and can only support one simultaneous client.
135
135
136
-
2. 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)
136
+
2. See [`EthernetWebServer Library Issue: Support for STM32F Series`](https://github.com/khoih-prog/EthernetWebServer/issues/1) for reason to create this separate library from [`EthernetWebServer library`](https://github.com/khoih-prog/EthernetWebServer)
137
137
138
138
---
139
139
---
@@ -158,12 +158,12 @@ The EthernetWebServer class found in `EthernetWebServer_STM32.h` header, is a si
158
158
## Installation
159
159
160
160
### Use Arduino Library Manager
161
-
The best way is to use `Arduino Library Manager`. Search for `EthernetWebServer_STM32`, then select / install the latest version.
161
+
The best way is to use `Arduino Library Manager`. Search for **`EthernetWebServer_STM32`**, then select / install the latest version.
162
162
You can also use this link [](https://www.ardu-badge.com/EthernetWebServer_STM32) for more detailed instructions.
163
163
164
164
### Manual Install
165
165
166
-
1. Navigate to [EthernetWebServer_STM32](https://github.com/khoih-prog/EthernetWebServer_STM32) page.
166
+
1. Navigate to [**EthernetWebServer_STM32**](https://github.com/khoih-prog/EthernetWebServer_STM32) page.
167
167
2. Download the latest release `EthernetWebServer_STM32-master.zip`.
168
168
3. Extract the zip file to `EthernetWebServer_STM32-master` directory
169
169
4. Copy whole
@@ -319,7 +319,7 @@ Standard W5x00 using Ethernet library is used by default, in the sketch, just be
319
319
320
320
```cpp
321
321
#defineUSE_BUILTIN_ETHERNETfalse
322
-
#defineUSE_UIP_ETHERNETtrue
322
+
#defineUSE_UIP_ETHERNETfalse
323
323
324
324
#if !(USE_BUILTIN_ETHERNET || USE_UIP_ETHERNET)
325
325
// Only one of the following to be true
@@ -338,7 +338,7 @@ For example, Ethernet_XYZ library uses **Ethernet_XYZ.h***
338
338
339
339
```cpp
340
340
#defineUSE_BUILTIN_ETHERNETfalse
341
-
#defineUSE_UIP_ETHERNETtrue
341
+
#defineUSE_UIP_ETHERNETfalse
342
342
343
343
#if !(USE_BUILTIN_ETHERNET || USE_UIP_ETHERNET)
344
344
// Only one of the following to be true
@@ -382,14 +382,14 @@ For example, Ethernet_XYZ library uses **Ethernet_XYZ.h***
382
382
383
383
**The default CS/SS pin is 10 for all boards, and is configurable in code.**
384
384
385
-
If the default pin is not corect, select the CS/SS pin (e.g. 22) to use as follows:
385
+
If the default pin is not corect, select another CS/SS pin (e.e. D22) to use as follows:
386
386
387
387
```cpp
388
388
// To override the default CS/SS pin. Don't use unless you know exactly which pin to use
389
389
// You can define here or customize for each board at same place with BOARD_TYPE
@@ -481,7 +481,7 @@ Both methods function the same
481
481
voidonFileUpload();
482
482
```
483
483
484
-
Example:*
484
+
Example:
485
485
486
486
```cpp
487
487
server.on("/", handlerFunction);
@@ -617,7 +617,7 @@ Also see examples:
617
617
- Nucleo-144 (F429ZI, F767ZI)
618
618
- Discovery (STM32F746G-DISCOVERY)
619
619
- STM32 boards (STM32F/L/H/G/WB/MP1) with 32K+ Flash, with Built-in Ethernet,
620
-
- See How To Use Built-in Ethernet at (https://github.com/khoih-prog/EthernetWebServer_STM32/issues/1)
620
+
- See How To Use Built-in Ethernet at [EthernetWebServer_STM32 Support and Test Results](https://github.com/khoih-prog/EthernetWebServer_STM32/issues/1)
0 commit comments