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

Commit 81ab96a

Browse files
authored
v1.1.1 to fix bug
#### Releases v1.1.1 1. Fix bug 2. Update `Packages_Patches`
1 parent 0a475ba commit 81ab96a

22 files changed

+144
-739
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ If you don't find anything, please [open a new issue](https://github.com/khoih-p
1515
Please ensure to specify the following:
1616

1717
* Arduino IDE version (e.g. 1.8.19) or Platform.io version
18-
* Board Core Version (e.g. Arduino SAMDUE core v1.6.12, ESP8266 core v3.0.2, ArduinoCore-mbed v2.7.2, etc.)
18+
* Board Core Version (e.g. Arduino SAMDUE core v1.6.12, ESP8266 core v3.0.2, ArduinoCore-mbed v3.0.1, etc.)
1919
* Contextual information (e.g. what you were trying to achieve)
2020
* Simplest possible steps to reproduce
2121
* Anything that might be relevant in your opinion, such as:
@@ -28,9 +28,9 @@ Please ensure to specify the following:
2828
```
2929
Arduino IDE version: 1.8.19
3030
RASPBERRY_PI_PICO board
31-
ArduinoCore-mbed v2.7.2
31+
ArduinoCore-mbed v3.0.1
3232
OS: Ubuntu 20.04 LTS
33-
Linux xy-Inspiron-3593 5.4.0-99-generic #112-Ubuntu SMP Thu Feb 3 13:50:55 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
33+
Linux xy-Inspiron-3593 5.13.0-40-generic #45~20.04.1-Ubuntu SMP Mon Apr 4 09:38:31 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
3434
3535
Context:
3636
I encountered a crash while trying to use the Timer Interrupt.

README.md

Lines changed: 77 additions & 713 deletions
Large diffs are not rendered by default.

changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313

1414
* [Changelog](#changelog)
15+
* [Releases v1.1.1](#releases-v111)
1516
* [Releases v1.1.0](#releases-v110)
1617
* [Releases v1.0.0](#releases-v100)
1718

@@ -20,6 +21,11 @@
2021

2122
## Changelog
2223

24+
#### Releases v1.1.1
25+
26+
1. Fix bug
27+
2. Update `Packages_Patches`
28+
2329
#### Releases v1.1.0
2430

2531
1. Add support to

library.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "WiFiMulti_Generic",
3-
"version": "1.1.0",
3+
"version": "1.1.1",
44
"keywords": "WiFi, WiFiMulti, WiFi-Multi, Arduino, ESP32, ESP8266, WiFiNINA, WiFiNINA-Generic, ESP8266-AT, ESP32-AT, RP2040, Nano-33-IoT, Nano-RP2040-Connect, SAMD, Teensy, Portenta, nRF52, SAM-DUE, AT-Command, mbed",
55
"description": "Simple MultiWiFi library to adapt ESP32/ESP8266 MultiWiFi of WiFi libraries to all other WiFi modules and libraries. Currently supporting ESP32, ESP8266, Teensy, SAM DUE, SAMD21, SAMD51, STM32F/L/H/G/WB/MP1, nRF52, RP2040-based (Nano-RP2040-Connect, RASPBERRY_PI_PICO, ESP32/ESP8266, etc.) boards using WiFi, such as WiFiNINA, WiFi101, U-Blox W101, W102, ESP8266/ESP32-AT modules/shields, with functions similar to those of ESP8266/ESP32 MultiWiFi of WiFi libraries",
66
"authors":
@@ -30,6 +30,18 @@
3030
"version": ">=1.8.14-3",
3131
"platforms": ["*"]
3232
},
33+
{
34+
"owner": "khoih-prog",
35+
"name": "Functional-Vlpp",
36+
"version": ">=1.0.2",
37+
"platforms": ["*"]
38+
},
39+
{
40+
"owner": "khoih-prog",
41+
"name": "ESP_AT_Lib",
42+
"version": ">=1.4.1",
43+
"platforms": ["*"]
44+
},
3345
{
3446
"name": "WiFi101",
3547
"version": "https://github.com/khoih-prog/WiFi101"

library.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=WiFiMulti_Generic
2-
version=1.1.0
2+
version=1.1.1
33
author=Khoi Hoang
44
license=GPLv3
55
maintainer=Khoi Hoang <khoih.prog@gmail.com>
@@ -8,5 +8,5 @@ paragraph=Currently supporting ESP32, ESP8266, Teensy, Portenta_H7, megaAVR, AVR
88
category=Communication
99
url=https://github.com/khoih-prog/WiFiMulti_Generic
1010
architectures=*
11-
depends=WiFiNINA_Generic,WiFiEspAT,ArduinoSTL
11+
depends=Functional-Vlpp, WiFiNINA_Generic, WiFiEspAT, ArduinoSTL, ESP_AT_Lib
1212
includes=WiFiMulti_Generic.h

platformio/platformio.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,8 @@ upload_speed = 921600
3838

3939
; Checks for the compatibility with frameworks and dev/platforms
4040
lib_compat_mode = strict
41+
lib_ldf_mode = chain+
42+
;lib_ldf_mode = deep+
4143

4244
lib_deps =
4345
; PlatformIO 4.x

src/ESP32/WiFiMulti_Generic.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,13 @@
2424
Copyright (c) 2015 Markus Sattler. All rights reserved.
2525
This file is part of the esp32 core for Arduino environment.
2626
27-
Version: 1.1.0
27+
Version: 1.1.1
2828
2929
Version Modified By Date Comments
3030
------- ----------- ---------- -----------
3131
1.0.0 K Hoang 15/02/2020 Initial coding for ESP32, ESP8266, WiFiNINA and ESP_AT modules
3232
1.1.0 K Hoang 16/02/2020 Add support to WiFi101 and many more boards (PortentaH7, megaAVR, Sparkfun SAMD, etc.)
33+
1.1.1 K Hoang 26/04/2020 Fix bug
3334
***************************************************************************************************************************************/
3435

3536
#pragma once

src/ESP32/WiFiMulti_Generic_Impl.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,13 @@
2424
Copyright (c) 2015 Markus Sattler. All rights reserved.
2525
This file is part of the esp32 core for Arduino environment.
2626
27-
Version: 1.1.0
27+
Version: 1.1.1
2828
2929
Version Modified By Date Comments
3030
------- ----------- ---------- -----------
3131
1.0.0 K Hoang 15/02/2020 Initial coding for ESP32, ESP8266, WiFiNINA and ESP_AT modules
3232
1.1.0 K Hoang 16/02/2020 Add support to WiFi101 and many more boards (PortentaH7, megaAVR, Sparkfun SAMD, etc.)
33+
1.1.1 K Hoang 26/04/2020 Fix bug
3334
***************************************************************************************************************************************/
3435

3536
#pragma once

src/ESP8266/ESP8266WiFiMulti.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,13 @@
2424
Copyright (c) 2015 Markus Sattler. All rights reserved.
2525
This file is part of the esp8266 core for Arduino environment.
2626
27-
Version: 1.1.0
27+
Version: 1.1.1
2828
2929
Version Modified By Date Comments
3030
------- ----------- ---------- -----------
3131
1.0.0 K Hoang 15/02/2020 Initial coding for ESP32, ESP8266, WiFiNINA and ESP_AT modules
3232
1.1.0 K Hoang 16/02/2020 Add support to WiFi101 and many more boards (PortentaH7, megaAVR, Sparkfun SAMD, etc.)
33+
1.1.1 K Hoang 26/04/2020 Fix bug
3334
***************************************************************************************************************************************/
3435

3536
#pragma once

src/ESP8266/ESP8266WiFiMulti_Impl.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,13 @@
2424
Copyright (c) 2015 Markus Sattler. All rights reserved.
2525
This file is part of the esp32 core for Arduino environment.
2626
27-
Version: 1.1.0
27+
Version: 1.1.1
2828
2929
Version Modified By Date Comments
3030
------- ----------- ---------- -----------
3131
1.0.0 K Hoang 15/02/2020 Initial coding for ESP32, ESP8266, WiFiNINA and ESP_AT modules
3232
1.1.0 K Hoang 16/02/2020 Add support to WiFi101 and many more boards (PortentaH7, megaAVR, Sparkfun SAMD, etc.)
33+
1.1.1 K Hoang 26/04/2020 Fix bug
3334
***************************************************************************************************************************************/
3435

3536
#pragma once

0 commit comments

Comments
 (0)