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

Commit

Permalink
v1.7.0 to auto detect ESP32 core and fix bug
Browse files Browse the repository at this point in the history
### Major Releases v1.7.0

1. Auto detect ESP32 core and use either built-in LittleFS or [LITTLEFS](https://github.com/lorol/LITTLEFS) library for ESP32 and WT32-ETH01.
2. Fix QNEthernet-related linkStatus.
3. Add support to many more new RP2040 boards
4. Add support to generic SAMD21 : `__SAMD21E1xA__`, `__SAMD21G1xA__` and `__SAMD21J1xA__`
  • Loading branch information
khoih-prog committed Nov 27, 2021
1 parent a369ebb commit 9dd9c60
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ This [**Ethernet_Manager** library](https://github.com/khoih-prog/Ethernet_Manag
- [`FlashStorage_SAMD library v1.2.0+`](https://github.com/khoih-prog/FlashStorage_SAMD) for SAMD21 and SAMD51 boards (ZERO, MKR, NANO_33_IOT, M0, M0 Pro, AdaFruit Itsy-Bitsy M4, etc.). [![GitHub release](https://img.shields.io/github/release/khoih-prog/FlashStorage_SAMD.svg)](https://github.com/khoih-prog/FlashStorage_SAMD/releases/latest)
- [`Adafruit's LittleFS/InternalFS`](www.adafruit.com) for nRF52
16. [`EthernetWebServer library v1.7.1+`](https://github.com/khoih-prog/EthernetWebServer). To install. check [![arduino-library-badge](https://www.ardu-badge.com/badge/EthernetWebServer.svg?)](https://www.ardu-badge.com/EthernetWebServer).
17. [`WebServer_WT32_ETH01 library v1.3.0+`](https://github.com/khoih-prog/WebServer_WT32_ETH01) for WT32_ETH01 boards. To install. check [![arduino-library-badge](https://www.ardu-badge.com/badge/WebServer_WT32_ETH01.svg?)](https://www.ardu-badge.com/WebServer_WT32_ETH01).
17. [`WebServer_WT32_ETH01 library v1.4.0+`](https://github.com/khoih-prog/WebServer_WT32_ETH01) for WT32_ETH01 boards. To install. check [![arduino-library-badge](https://www.ardu-badge.com/badge/WebServer_WT32_ETH01.svg?)](https://www.ardu-badge.com/WebServer_WT32_ETH01).
18. [`ESP_DoubleResetDetector library v1.2.1+`](https://github.com/khoih-prog/ESP_DoubleResetDetector) for ESP32 and ESP8266. To install. check [![arduino-library-badge](https://www.ardu-badge.com/badge/ESP_DoubleResetDetector.svg?)](https://www.ardu-badge.com/ESP_DoubleResetDetector).
19. [`DoubleResetDetector_Generic library v1.7.3+`](https://github.com/khoih-prog/DoubleResetDetector_Generic) for other boards (not ESP32 or ESP8266). To install. check [![arduino-library-badge](https://www.ardu-badge.com/badge/DoubleResetDetector_Generic.svg?)](https://www.ardu-badge.com/DoubleResetDetector_Generic).
20. [`Functional-VLPP library v1.0.2+`](https://github.com/khoih-prog/functional-vlpp) to use server's lambda function. To install. check [![arduino-library-badge](https://www.ardu-badge.com/badge/Functional-Vlpp.svg?)](https://www.ardu-badge.com/Functional-Vlpp)
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
{
"owner": "khoih-prog",
"name": "WebServer_WT32_ETH01",
"version": "^1.3.0",
"version": "^1.4.0",
"platforms": ["espressif32"]
},
{
Expand Down
4 changes: 2 additions & 2 deletions platformio/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -39,15 +39,15 @@ lib_deps =
; DoubleResetDetector_Generic@>=1.7.3
; Functional-Vlpp@>=1.0.2
; FlashStorage_SAMD@>=1.2.1
; WebServer_WT32_ETH01@>=1.3.0
; WebServer_WT32_ETH01@>=1.4.0
; https://github.com/ssilverman/QNEthernet
; PlatformIO 5.x
khoih-prog/EthernetWebServer@>=1.7.1
khoih-prog/ESP_DoubleResetDetector@>=1.2.1
khoih-prog/DoubleResetDetector_Generic@>=1.7.3
khoih-prog/Functional-Vlpp@>=1.0.2
khoih-prog/FlashStorage_SAMD@>=1.2.1
khoih-prog/WebServer_WT32_ETH01@>=1.3.0
khoih-prog/WebServer_WT32_ETH01@>=1.4.0
https://github.com/ssilverman/QNEthernet

build_flags =
Expand Down

0 comments on commit 9dd9c60

Please sign in to comment.