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

Commit f8f974e

Browse files
authored
v1.8.14-2 to support Nano_RP2040_Connect
### Releases v1.8.14-2 1. Add support to `Nano_RP2040_Connect` using `arduino-pico` core 2. Update `Packages' Patches`
1 parent a58a845 commit f8f974e

33 files changed

+297
-69
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ If you don't find anything, please [open a new issue](https://github.com/khoih-p
1414

1515
Please ensure to specify the following:
1616

17-
* Arduino IDE version (e.g. 1.8.16) or Platform.io version
17+
* Arduino IDE version (e.g. 1.8.19) or Platform.io version
1818
* Core Version (e.g. Arduino SAMD core v1.8.12, Adafruit SAMD core v1.7.5, Arduino-mbed RP2040 v2.6.1)
1919
* Board type (e.g. NANO_RP2040_CONNECT, RASPBERRY_PI_PICO, ADAFRUIT_FEATHER_RP2040, GENERIC_RP2040, etc.)
2020
* Contextual information (e.g. what you were trying to achieve)
@@ -27,7 +27,7 @@ Please ensure to specify the following:
2727
### Example
2828

2929
```
30-
Arduino IDE version: 1.8.16
30+
Arduino IDE version: 1.8.19
3131
Arduino-mbed RP2040 v2.6.1
3232
NANO_RP2040_CONNECT Module
3333
OS: Ubuntu 20.04 LTS

README.md

Lines changed: 216 additions & 36 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
## Table of Contents
1313

1414
* [Changelog](#changelog)
15+
* [Releases v1.8.14-2](#releases-v1814-2)
1516
* [Releases v1.8.14-1](#releases-v1814-1)
1617
* [Releases v1.8.13](#releases-v1813)
1718
* [Releases v1.8.12](#releases-v1812)
@@ -37,6 +38,11 @@
3738

3839
## Changelog
3940

41+
### Releases v1.8.14-2
42+
43+
1. Add support to `Nano_RP2040_Connect` using `arduino-pico` core
44+
2. Update `Packages' Patches`
45+
4046
### Releases v1.8.14-1
4147

4248
1. Fix examples to support ATmega4809 such as UNO_WIFI_REV2 and NANO_EVERY

keywords.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,3 +234,11 @@ applyOTA KEYWORD2
234234
# Constants (LITERAL1)
235235
#######################################
236236

237+
WIFININA_GENERIC_VERSION LITERAL1
238+
WIFININA_GENERIC_VERSION_MAJOR LITERAL1
239+
WIFININA_GENERIC_VERSION_MINOR LITERAL1
240+
WIFININA_GENERIC_VERSION_PATCH LITERAL1
241+
WIFININA_GENERIC_VERSION_PATCH_MINOR LITERAL1
242+
243+
WIFININA_GENERIC_VERSION_INT LITERAL1
244+

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "WiFiNINA_Generic",
3-
"version": "1.8.14-1",
3+
"version": "1.8.14-2",
44
"keywords": "wifi, wi-fi, WiFiNINA, NINA-B302-ublox, W101, W102, shield, Teensy, SAM DUE, SAMD, STM32, nRF52, rpi-pico, rp2040, Credentials, Manager, nano-rp2040-connect, raspberry-pi-pico, mega, 32u4",
55
"description": "Enables network connection (local and Internet) and WiFiStorage for SAM DUE, SAMD21, SAMD51, Teensy, AVR (328P, 32u4, 16u4, etc.), Mega, STM32F/L/H/G/WB/MP1, nRF52, NINA_B302_ublox, NINA_B112_ublox, RP2040-based boards, etc. in addition to Arduino MKR WiFi 1010, Arduino MKR VIDOR 4000, Arduino UNO WiFi Rev.2, Nano 33 IoT, Nano RP2040 Connect",
66
"authors": [

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=WiFiNINA_Generic
2-
version=1.8.14-1
2+
version=1.8.14-2
33
author=Arduino, Khoi Hoang <[email protected]>
44
maintainer=Khoi Hoang <[email protected]>
55
sentence=Enables network connection (local and Internet) and WiFiStorage for SAM DUE, SAMD21, SAMD51, Teensy, AVR (328P, 32u4, 16u4, etc.), Mega, STM32F/L/H/G/WB/MP1, nRF52, NINA_B302_ublox, NINA_B112_ublox, RP2040-based boards, etc. in addition to Arduino MKR WiFi 1010, Arduino MKR VIDOR 4000, Arduino UNO WiFi Rev.2, Nano 33 IoT, Nano RP2040 Connect

src/WiFiClient_Generic.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
License along with this library; if not, write to the Free Software
2525
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2626
27-
Version: 1.8.14-1
27+
Version: 1.8.14-2
2828
2929
Version Modified By Date Comments
3030
------- ----------- ---------- -----------
@@ -50,6 +50,7 @@
5050
1.8.12 K Hoang 30/06/2021 Sync with WiFiNINA v1.8.12 : new FW v1.4.7. Add support to most AVR boards.
5151
1.8.13 K Hoang 03/08/2021 Sync with WiFiNINA v1.8.13 : new FW v1.4.8. Add support to ADAFRUIT_MATRIXPORTAL_M4_EXPRESS
5252
1.8.14-1 K Hoang 25/11/2021 Fix examples to support ATmega4809 such as UNO_WIFI_REV2 and NANO_EVERY
53+
1.8.14-2 K Hoang 31/12/2021 Add support to Nano_RP2040_Connect using arduino-pico core
5354
***********************************************************************************************************************************/
5455

5556
#define _WIFININA_LOGLEVEL_ 1

src/WiFiClient_Generic.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
License along with this library; if not, write to the Free Software
2525
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2626
27-
Version: 1.8.14-1
27+
Version: 1.8.14-2
2828
2929
Version Modified By Date Comments
3030
------- ----------- ---------- -----------
@@ -50,6 +50,7 @@
5050
1.8.12 K Hoang 30/06/2021 Sync with WiFiNINA v1.8.12 : new FW v1.4.7. Add support to most AVR boards.
5151
1.8.13 K Hoang 03/08/2021 Sync with WiFiNINA v1.8.13 : new FW v1.4.8. Add support to ADAFRUIT_MATRIXPORTAL_M4_EXPRESS
5252
1.8.14-1 K Hoang 25/11/2021 Fix examples to support ATmega4809 such as UNO_WIFI_REV2 and NANO_EVERY
53+
1.8.14-2 K Hoang 31/12/2021 Add support to Nano_RP2040_Connect using arduino-pico core
5354
***********************************************************************************************************************************/
5455

5556
#pragma once

src/WiFiNINA_Generic.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
License along with this library; if not, write to the Free Software
2525
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2626
27-
Version: 1.8.14-1
27+
Version: 1.8.14-2
2828
2929
Version Modified By Date Comments
3030
------- ----------- ---------- -----------
@@ -50,6 +50,7 @@
5050
1.8.12 K Hoang 30/06/2021 Sync with WiFiNINA v1.8.12 : new FW v1.4.7. Add support to most AVR boards.
5151
1.8.13 K Hoang 03/08/2021 Sync with WiFiNINA v1.8.13 : new FW v1.4.8. Add support to ADAFRUIT_MATRIXPORTAL_M4_EXPRESS
5252
1.8.14-1 K Hoang 25/11/2021 Fix examples to support ATmega4809 such as UNO_WIFI_REV2 and NANO_EVERY
53+
1.8.14-2 K Hoang 31/12/2021 Add support to Nano_RP2040_Connect using arduino-pico core
5354
***********************************************************************************************************************************/
5455

5556
#pragma once

src/WiFiNINA_Pinout_Generic.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
License along with this library; if not, write to the Free Software
2525
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2626
27-
Version: 1.8.14-1
27+
Version: 1.8.14-2
2828
2929
Version Modified By Date Comments
3030
------- ----------- ---------- -----------
@@ -50,6 +50,7 @@
5050
1.8.12 K Hoang 30/06/2021 Sync with WiFiNINA v1.8.12 : new FW v1.4.7. Add support to most AVR boards.
5151
1.8.13 K Hoang 03/08/2021 Sync with WiFiNINA v1.8.13 : new FW v1.4.8. Add support to ADAFRUIT_MATRIXPORTAL_M4_EXPRESS
5252
1.8.14-1 K Hoang 25/11/2021 Fix examples to support ATmega4809 such as UNO_WIFI_REV2 and NANO_EVERY
53+
1.8.14-2 K Hoang 31/12/2021 Add support to Nano_RP2040_Connect using arduino-pico core
5354
***********************************************************************************************************************************/
5455

5556
#pragma once
@@ -103,7 +104,7 @@
103104

104105

105106
#if ( defined(ARDUINO_NANO_RP2040_CONNECT) || defined(ARDUINO_SAMD_NANO_33_IOT) || defined(ARDUINO_SAMD_MKRWIFI1010) || \
106-
defined(ARDUINO_SAMD_MKRVIDOR4000) )
107+
defined(ARDUINO_SAMD_MKRVIDOR4000) || defined(ARDUINO_ARDUINO_NANO_RP2040_CONNECT))
107108

108109
#warning Using default WiFiNINA settings
109110

0 commit comments

Comments
 (0)