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

Commit 2438606

Browse files
authored
v1.2.3-a
### Releases v1.2.3-a 1. Add back MD5/SHA1 authentication feature. 4. Add example, update README.md, clean up.
1 parent 1134dc6 commit 2438606

File tree

2 files changed

+41
-3
lines changed

2 files changed

+41
-3
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ to apply the better and faster **asynchronous** feature of the **powerful** [ESP
4646
2. [`Arduino Core for STM32 1.9.0+`](https://github.com/stm32duino/Arduino_Core_STM32) for STM32 (Use Arduino Board Manager)
4747
3. [`STM32Ethernet library v1.2.0+`](https://github.com/stm32duino/STM32Ethernet) for built-in Ethernet on (Nucleo-144, Discovery)
4848
4. [`LwIP library v2.1.2+`](https://github.com/stm32duino/LwIP) for built-in Ethernet on (Nucleo-144, Discovery)
49-
5. [`STM32AsyncTCP library v1.0.0+`](https://github.com/philbowles/STM32AsyncTCP) for built-in Ethernet on (Nucleo-144, Discovery)
49+
5. [`STM32AsyncTCP library`](https://github.com/philbowles/STM32AsyncTCP) for built-in Ethernet on (Nucleo-144, Discovery)
5050

5151
---
5252

@@ -66,8 +66,7 @@ The best and easiest way is to use `Arduino Library Manager`. Search for `AsyncW
6666
1. Install [VS Code](https://code.visualstudio.com/)
6767
2. Install [PlatformIO](https://platformio.org/platformio-ide)
6868
3. Install **AsyncWebServer_STM32** library by using [Library Manager](https://docs.platformio.org/en/latest/librarymanager/). Search for ***AsyncWebServer_STM32*** in [Platform.io Author's Libraries](https://platformio.org/lib/search?query=author:%22Khoi%20Hoang%22)
69-
4. Use included [platformio.ini](examples/platformio/platformio.ini) file from examples to ensure that all dependent libraries will installed automatically.
70-
69+
4. Use included [platformio.ini](platformio/platformio.ini) file from examples to ensure that all dependent libraries will installed automatically. Please visit documentation for the other options and examples at [Project Configuration File](https://docs.platformio.org/page/projectconf.html)
7170
---
7271

7372
## Table of contents

platformio/platformio.ini

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
;PlatformIO Project Configuration File
2+
;
3+
; Build options: build flags, source filter
4+
; Upload options: custom upload port, speed and extra flags
5+
; Library options: dependencies, extra library storages
6+
; Advanced options: extra scripting
7+
;
8+
; Please visit documentation for the other options and examples
9+
; https://docs.platformio.org/page/projectconf.html
10+
11+
lib_deps =
12+
STM32duino LwIP@~2.1.2
13+
STM32duino STM32Ethernet@~1.2.0
14+
STM32AsyncTCP
15+
16+
[env:nucleo_h429zi]
17+
platform = ststm32
18+
board = nucleo_h429zi
19+
framework = arduino
20+
21+
[env:nucleo_h746zg]
22+
platform = ststm32
23+
board = nucleo_h746zg
24+
framework = arduino
25+
26+
[env:nucleo_h756zg]
27+
platform = ststm32
28+
board = nucleo_h756zg
29+
framework = arduino
30+
31+
[env:nucleo_h767zi]
32+
platform = ststm32
33+
board = nucleo_h7673zi
34+
framework = arduino
35+
36+
[env:disco_f746ng]
37+
platform = ststm32
38+
board = disco_f746ng
39+
framework = arduino

0 commit comments

Comments
 (0)