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

Commit

Permalink
v1.6.1 to Auto detect ESP32 core version
Browse files Browse the repository at this point in the history
### Releases v1.6.1

1. Auto detect ESP32 core version. Fix bug in examples for WT32_ETH01
  • Loading branch information
khoih-prog authored Dec 1, 2021
1 parent 0ab6db0 commit 16571e0
Show file tree
Hide file tree
Showing 11 changed files with 78 additions and 67 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ Please ensure to specify the following:

```
Arduino IDE version: 1.8.16
`ArduinoCore-mbed` mbed_portenta core v2.5.2
`ArduinoCore-mbed` mbed_portenta core v2.6.1
Portenta_H7 Rev2 ABX00042
OS: Ubuntu 20.04 LTS
Linux xy-Inspiron-3593 5.4.0-90-generic #101-Ubuntu SMP Fri Oct 15 20:00:55 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
Linux xy-Inspiron-3593 5.4.0-91-generic #102-Ubuntu SMP Fri Nov 5 16:31:28 UTC 2021 x86_64 x86_64 x86_64 GNU/Linux
Context:
I encountered a crash while trying to use the Timer Interrupt.
Expand Down
90 changes: 45 additions & 45 deletions README.md

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
## Table of Contents

* [Changelog](#changelog)
* [Releases v1.6.1](#releases-v161)
* [Releases v1.6.0](#releases-v160)
* [Releases v1.5.1](#releases-v151)
* [Releases v1.5.0](#releases-v150)
Expand All @@ -27,6 +28,10 @@

## Changelog

### Releases v1.6.1

1. Auto detect ESP32 core version. Fix bug in examples for WT32_ETH01

### Releases v1.6.0

1. Replace deprecated `ipv4bot.whatismyipaddress.com` with `ifconfig.me`
Expand Down
11 changes: 6 additions & 5 deletions library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "DDNS_Generic",
"version": "1.6.0",
"version": "1.6.1",
"description": "DDNS Update Client for Arduino boards, ported to run on SAM DUE, nRF52, SAMD21/SAMD51, STM32F/L/H/G/WB/MP1, AVR Mega, megaAVR, Teensy, RP2040-based RASPBERRY_PI_PICO, WT32_ETH01, Portenta_H7, etc. besides ESP8266/ESP32, using WiFi, WiFiNINA, Ethernet W5x00, ENC28J60, LAN8742A or Teensy NativeEthernet. It is designed to be light-weight and currently supports DuckDNS, No-ip, DynDNS, Dynu, enom, all-inkl, selfhost.de, dyndns.it, strato, freemyip, afraid.org, OVH.com. Deprecated ipv4bot.whatismyipaddress.com has been replaced with ifconfig.me",
"keywords": "ddns, wifi, ethernet, native-ethernet, noip, duckdns, dyndns, communication, dynamic-dns, esp32, esp8266, rp2040, teensy, samd, sam-due, nrf52, Portenta-H7, stm32, w5x00, enc28j60, wt32-eth01, rpi-pico, esp32-at, esp8266-at, avr-mega, mega-avr",
"authors":
Expand Down Expand Up @@ -38,7 +38,7 @@
{
"owner": "khoih-prog",
"name": "WiFiNINA_Generic",
"version": ">=1.8.13",
"version": ">=1.8.14-1",
"platforms": ["*"]
},
{
Expand All @@ -56,13 +56,13 @@
{
"owner": "khoih-prog",
"name": "WebServer_WT32_ETH01",
"version": ">=1.2.0",
"version": ">=1.4.1",
"platforms": ["espressif32"]
},
{
"owner": "khoih-prog",
"name": "WiFiWebServer",
"version": ">=1.4.1",
"version": ">=1.4.2",
"platforms": ["*"]
},
{
Expand All @@ -74,5 +74,6 @@
],
"frameworks": "*",
"platforms": "*",
"examples": "examples/*/*/*.ino"
"examples": "examples/*/*/*.ino",
"headers": ["DDNS_Generic.h"]
}
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=DDNS_Generic
version=1.6.0
version=1.6.1
author=Ayush Sharma, Khoi Hoang
license=MIT
maintainer=Khoi Hoang <khoih.prog@gmail.com>
Expand Down
14 changes: 7 additions & 7 deletions platformio/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,11 @@ lib_deps =
; PlatformIO 4.x
ArduinoHttpClient@>=0.4.0
Functional-VLPP@>=1.0.2
WiFiNINA_Generic@>=1.8.13
WiFiWebServer@>=1.4.1
WiFiNINA_Generic@>=1.8.14-1
WiFiWebServer@>=1.4.2
EthernetWebServer@>=1.7.1
EthernetWebServer_STM32@>=1.2.1
WebServer_WT32_ETH01@>=1.2.0
WebServer_WT32_ETH01@>=1.4.1
ESP8266_AT_WebServer@>=1.4.0
Ethernet@>=2.0.0
EthernetLarge@>=2.0.0
Expand All @@ -59,18 +59,18 @@ lib_deps =
; PlatformIO 5.x
; arduino-libraries/ArduinoHttpClient@>=0.4.0
; khoih-prog/Functional-Vlpp@>=1.0.2
; khoih-prog/WiFiNINA_Generic@>=1.8.13
; khoih-prog/WiFiWebServer@>=1.4.1
; khoih-prog/WiFiNINA_Generic@>=1.8.14-1
; khoih-prog/WiFiWebServer@>=1.4.2
; khoih-prog/EthernetWebServer@>=1.7.1
; khoih-prog/EthernetWebServer_STM32@>=1.2.1
; khoih-prog/WebServer_WT32_ETH01@>=1.2.0
; khoih-prog/WebServer_WT32_ETH01@>=1.4.1
; khoih-prog/ESP8266_AT_WebServer@>=1.4.0
; PaulStoffregen/Ethernet@>=2.0.0
; PaulStoffregen/EthernetLarge@>=2.0.0
; adafruit/Ethernet2@>=1.0.4
; sstaub/Ethernet3@>=1.5.5
; jandrassy/EthernetENC@>=2.0.1
; UIPEthernet/UIPEthernet@>=2.0.9 8
; UIPEthernet/UIPEthernet@>=2.0.8
; stm32duino/STM32duino LwIP@>=2.1.2
; stm32duino/STM32duino STM32Ethernet@>=1.2.0

Expand Down
5 changes: 3 additions & 2 deletions src/DDNS_Generic.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/DDNS_Generic
Licensed under MIT license
Version: 1.6.0
Version: 1.6.1
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -27,6 +27,7 @@
1.5.0 K Hoang 16/09/2021 Add support to Portenta_H7, using either WiFi or Vision-shield Ethernet
1.5.1 K Hoang 10/10/2021 Update `platform.ini` and `library.json`
1.6.0 K Hoang 16/11/2021 Replace deprecated `ipv4bot.whatismyipaddress.com` with `ifconfig.me`
1.6.1 K Hoang 01/12/2021 Auto detect ESP32 core version. Fix bug in examples for WT32_ETH01
*****************************************************************************************************************************/

#ifndef DDNS_Generic_H
Expand All @@ -36,7 +37,7 @@
#include "DDNS_Generic_Debug.h"

#ifndef DDNS_GENERIC_VERSION
#define DDNS_GENERIC_VERSION "DDNS_Generic v1.6.0"
#define DDNS_GENERIC_VERSION "DDNS_Generic v1.6.1"
#endif

#if ( !defined(DDNS_USING_WIFI) || DDNS_USING_WIFI || !DDNS_USING_ETHERNET)
Expand Down
3 changes: 2 additions & 1 deletion src/DDNS_Generic_Debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/DDNS_Generic
Licensed under MIT license
Version: 1.6.0
Version: 1.6.1
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -27,6 +27,7 @@
1.5.0 K Hoang 16/09/2021 Add support to Portenta_H7, using either WiFi or Vision-shield Ethernet
1.5.1 K Hoang 10/10/2021 Update `platform.ini` and `library.json`
1.6.0 K Hoang 16/11/2021 Replace deprecated `ipv4bot.whatismyipaddress.com` with `ifconfig.me`
1.6.1 K Hoang 01/12/2021 Auto detect ESP32 core version. Fix bug in examples for WT32_ETH01
*****************************************************************************************************************************/

#ifndef DDNS_Generic_Debug_H
Expand Down
5 changes: 3 additions & 2 deletions src/DDNS_Generic_Impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/DDNS_Generic
Licensed under MIT license
Version: 1.6.0
Version: 1.6.1
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -26,7 +26,8 @@
1.4.0 K Hoang 16/07/2021 Add support to WT32_ETH01 (ESP32 + LAN8720)
1.5.0 K Hoang 16/09/2021 Add support to Portenta_H7, using either WiFi or Vision-shield Ethernet
1.5.1 K Hoang 10/10/2021 Update `platform.ini` and `library.json`
1.6.0 K Hoang 16/11/2021 Replace deprecated `ipv4bot.whatismyipaddress.com` with `ifconfig.me`
1.6.0 K Hoang 16/11/2021 Replace deprecated `ipv4bot.whatismyipaddress.com` with `ifconfig.me`
1.6.1 K Hoang 01/12/2021 Auto detect ESP32 core version. Fix bug in examples for WT32_ETH01
*****************************************************************************************************************************/

#ifndef DDNS_Generic_Impl_H
Expand Down
3 changes: 2 additions & 1 deletion src/HTTP_ResponseParser.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/DDNS_Generic
Licensed under MIT license
Version: 1.6.0
Version: 1.6.1
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -27,6 +27,7 @@
1.5.0 K Hoang 16/09/2021 Add support to Portenta_H7, using either WiFi or Vision-shield Ethernet
1.5.1 K Hoang 10/10/2021 Update `platform.ini` and `library.json`
1.6.0 K Hoang 16/11/2021 Replace deprecated `ipv4bot.whatismyipaddress.com` with `ifconfig.me`
1.6.1 K Hoang 01/12/2021 Auto detect ESP32 core version. Fix bug in examples for WT32_ETH01
*****************************************************************************************************************************/

#ifndef HTTP_ResponseParser_h
Expand Down
3 changes: 2 additions & 1 deletion src/HTTP_ResponseParser_Impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
Built by Khoi Hoang https://github.com/khoih-prog/DDNS_Generic
Licensed under MIT license
Version: 1.6.0
Version: 1.6.1
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -27,6 +27,7 @@
1.5.0 K Hoang 16/09/2021 Add support to Portenta_H7, using either WiFi or Vision-shield Ethernet
1.5.1 K Hoang 10/10/2021 Update `platform.ini` and `library.json`
1.6.0 K Hoang 16/11/2021 Replace deprecated `ipv4bot.whatismyipaddress.com` with `ifconfig.me`
1.6.1 K Hoang 01/12/2021 Auto detect ESP32 core version. Fix bug in examples for WT32_ETH01
*****************************************************************************************************************************/

#ifndef HTTP_ResponseParser_Impl_h
Expand Down

0 comments on commit 16571e0

Please sign in to comment.