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

Commit b5e679c

Browse files
authored
v1.7.0
### New in v1.7.0 1. Sync with [Arduino WiFiNINA Library v1.7.0](https://github.com/arduino-libraries/WiFiNINA/releases/tag/1.7.0). See [Add 'downloadOTA' command to download OTA file and verify length/CRC](arduino-libraries/WiFiNINA#124) 2. Add Arduino SAMD Packages_Patches to fix Arduino SAMD compiler error when using STL. See [Improve Arduino compatibility with the STL (min and max macro)](arduino/ArduinoCore-samd#399)
1 parent 3253152 commit b5e679c

File tree

71 files changed

+636
-264
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+636
-264
lines changed

README.md

Lines changed: 189 additions & 14 deletions
Large diffs are not rendered by default.

examples/AP_SimpleWebServer/AP_SimpleWebServer.ino

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
License along with this library; if not, write to the Free Software
4242
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
4343
44-
Version: 1.6.2
44+
Version: 1.7.0
4545
4646
Version Modified By Date Comments
4747
------- ----------- ---------- -----------
@@ -52,9 +52,10 @@
5252
1.5.2 K Hoang 09/05/2020 Port FirmwareUpdater to permit nRF52, Teensy, SAMD21, SAMD51, etc. boards to update WiFiNINA
5353
W101/W102 firmware and SSL certs on IDE. Update default pin-outs.
5454
1.5.3 K Hoang 14/07/2020 Add function to support new WebSockets2_Generic Library
55-
1.6.0 K Hoang 19/07/2020 Sync with Aruino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
56-
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
57-
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
55+
1.6.0 K Hoang 19/07/2020 Sync with Arduino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
56+
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
57+
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
58+
1.7.0 K Hoang 06/08/2020 Sync with Arduino WiFiNINA Library v1.7.0 : Add downloadOTA() and verify length/CRC
5859
*****************************************************************************************************************************/
5960

6061
#include "defines.h"

examples/AP_SimpleWebServer/defines.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
License along with this library; if not, write to the Free Software
2626
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2727
28-
Version: 1.6.2
28+
Version: 1.7.0
2929
3030
Version Modified By Date Comments
3131
------- ----------- ---------- -----------
@@ -36,9 +36,10 @@
3636
1.5.2 K Hoang 09/05/2020 Port FirmwareUpdater to permit nRF52, Teensy, SAMD21, SAMD51, etc. boards to update WiFiNINA
3737
W101/W102 firmware and SSL certs on IDE. Update default pin-outs.
3838
1.5.3 K Hoang 14/07/2020 Add function to support new WebSockets2_Generic Library
39-
1.6.0 K Hoang 19/07/2020 Sync with Aruino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
40-
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
41-
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
39+
1.6.0 K Hoang 19/07/2020 Sync with Arduino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
40+
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
41+
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
42+
1.7.0 K Hoang 06/08/2020 Sync with Arduino WiFiNINA Library v1.7.0 : Add downloadOTA() and verify length/CRC
4243
*****************************************************************************************************************************/
4344

4445
#ifndef defines_h

examples/ConnectNoEncryption/ConnectNoEncryption.ino

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
License along with this library; if not, write to the Free Software
3535
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
3636
37-
Version: 1.6.2
37+
Version: 1.7.0
3838
3939
Version Modified By Date Comments
4040
------- ----------- ---------- -----------
@@ -45,9 +45,10 @@
4545
1.5.2 K Hoang 09/05/2020 Port FirmwareUpdater to permit nRF52, Teensy, SAMD21, SAMD51, etc. boards to update WiFiNINA
4646
W101/W102 firmware and SSL certs on IDE. Update default pin-outs.
4747
1.5.3 K Hoang 14/07/2020 Add function to support new WebSockets2_Generic Library
48-
1.6.0 K Hoang 19/07/2020 Sync with Aruino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
49-
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
50-
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
48+
1.6.0 K Hoang 19/07/2020 Sync with Arduino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
49+
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
50+
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
51+
1.7.0 K Hoang 06/08/2020 Sync with Arduino WiFiNINA Library v1.7.0 : Add downloadOTA() and verify length/CRC
5152
*****************************************************************************************************************************/
5253

5354
#include "defines.h"

examples/ConnectNoEncryption/defines.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
License along with this library; if not, write to the Free Software
2626
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2727
28-
Version: 1.6.2
28+
Version: 1.7.0
2929
3030
Version Modified By Date Comments
3131
------- ----------- ---------- -----------
@@ -36,9 +36,10 @@
3636
1.5.2 K Hoang 09/05/2020 Port FirmwareUpdater to permit nRF52, Teensy, SAMD21, SAMD51, etc. boards to update WiFiNINA
3737
W101/W102 firmware and SSL certs on IDE. Update default pin-outs.
3838
1.5.3 K Hoang 14/07/2020 Add function to support new WebSockets2_Generic Library
39-
1.6.0 K Hoang 19/07/2020 Sync with Aruino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
40-
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
41-
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
39+
1.6.0 K Hoang 19/07/2020 Sync with Arduino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
40+
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
41+
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
42+
1.7.0 K Hoang 06/08/2020 Sync with Arduino WiFiNINA Library v1.7.0 : Add downloadOTA() and verify length/CRC
4243
*****************************************************************************************************************************/
4344

4445
#ifndef defines_h

examples/ConnectWithWEP/ConnectWithWEP.ino

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
License along with this library; if not, write to the Free Software
4444
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
4545
46-
Version: 1.6.2
46+
Version: 1.7.0
4747
4848
Version Modified By Date Comments
4949
------- ----------- ---------- -----------
@@ -54,9 +54,10 @@
5454
1.5.2 K Hoang 09/05/2020 Port FirmwareUpdater to permit nRF52, Teensy, SAMD21, SAMD51, etc. boards to update WiFiNINA
5555
W101/W102 firmware and SSL certs on IDE. Update default pin-outs.
5656
1.5.3 K Hoang 14/07/2020 Add function to support new WebSockets2_Generic Library
57-
1.6.0 K Hoang 19/07/2020 Sync with Aruino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
58-
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
59-
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
57+
1.6.0 K Hoang 19/07/2020 Sync with Arduino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
58+
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
59+
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
60+
1.7.0 K Hoang 06/08/2020 Sync with Arduino WiFiNINA Library v1.7.0 : Add downloadOTA() and verify length/CRC
6061
*****************************************************************************************************************************/
6162

6263
#include "defines.h"

examples/ConnectWithWEP/defines.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
License along with this library; if not, write to the Free Software
2626
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2727
28-
Version: 1.6.2
28+
Version: 1.7.0
2929
3030
Version Modified By Date Comments
3131
------- ----------- ---------- -----------
@@ -36,9 +36,10 @@
3636
1.5.2 K Hoang 09/05/2020 Port FirmwareUpdater to permit nRF52, Teensy, SAMD21, SAMD51, etc. boards to update WiFiNINA
3737
W101/W102 firmware and SSL certs on IDE. Update default pin-outs.
3838
1.5.3 K Hoang 14/07/2020 Add function to support new WebSockets2_Generic Library
39-
1.6.0 K Hoang 19/07/2020 Sync with Aruino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
40-
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
41-
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
39+
1.6.0 K Hoang 19/07/2020 Sync with Arduino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
40+
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
41+
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
42+
1.7.0 K Hoang 06/08/2020 Sync with Arduino WiFiNINA Library v1.7.0 : Add downloadOTA() and verify length/CRC
4243
*****************************************************************************************************************************/
4344

4445
#ifndef defines_h

examples/ConnectWithWPA/ConnectWithWPA.ino

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
License along with this library; if not, write to the Free Software
3434
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
3535
36-
Version: 1.6.2
36+
Version: 1.7.0
3737
3838
Version Modified By Date Comments
3939
------- ----------- ---------- -----------
@@ -44,9 +44,10 @@
4444
1.5.2 K Hoang 09/05/2020 Port FirmwareUpdater to permit nRF52, Teensy, SAMD21, SAMD51, etc. boards to update WiFiNINA
4545
W101/W102 firmware and SSL certs on IDE. Update default pin-outs.
4646
1.5.3 K Hoang 14/07/2020 Add function to support new WebSockets2_Generic Library
47-
1.6.0 K Hoang 19/07/2020 Sync with Aruino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
48-
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
49-
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
47+
1.6.0 K Hoang 19/07/2020 Sync with Arduino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
48+
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
49+
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
50+
1.7.0 K Hoang 06/08/2020 Sync with Arduino WiFiNINA Library v1.7.0 : Add downloadOTA() and verify length/CRC
5051
*****************************************************************************************************************************/
5152
#include "defines.h"
5253
#include "arduino_secrets.h"

examples/ConnectWithWPA/defines.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
License along with this library; if not, write to the Free Software
2626
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2727
28-
Version: 1.6.2
28+
Version: 1.7.0
2929
3030
Version Modified By Date Comments
3131
------- ----------- ---------- -----------
@@ -36,9 +36,10 @@
3636
1.5.2 K Hoang 09/05/2020 Port FirmwareUpdater to permit nRF52, Teensy, SAMD21, SAMD51, etc. boards to update WiFiNINA
3737
W101/W102 firmware and SSL certs on IDE. Update default pin-outs.
3838
1.5.3 K Hoang 14/07/2020 Add function to support new WebSockets2_Generic Library
39-
1.6.0 K Hoang 19/07/2020 Sync with Aruino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
40-
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
41-
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
39+
1.6.0 K Hoang 19/07/2020 Sync with Arduino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
40+
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
41+
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
42+
1.7.0 K Hoang 06/08/2020 Sync with Arduino WiFiNINA Library v1.7.0 : Add downloadOTA() and verify length/CRC
4243
*****************************************************************************************************************************/
4344

4445
#ifndef defines_h

examples/ConnectWithWPA2Enterprise/ConnectWithWPA2Enterprise.ino

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
License along with this library; if not, write to the Free Software
3131
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
3232
33-
Version: 1.6.2
33+
Version: 1.7.0
3434
3535
Version Modified By Date Comments
3636
------- ----------- ---------- -----------
@@ -41,9 +41,10 @@
4141
1.5.2 K Hoang 09/05/2020 Port FirmwareUpdater to permit nRF52, Teensy, SAMD21, SAMD51, etc. boards to update WiFiNINA
4242
W101/W102 firmware and SSL certs on IDE. Update default pin-outs.
4343
1.5.3 K Hoang 14/07/2020 Add function to support new WebSockets2_Generic Library
44-
1.6.0 K Hoang 19/07/2020 Sync with Aruino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
45-
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
46-
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
44+
1.6.0 K Hoang 19/07/2020 Sync with Arduino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
45+
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
46+
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
47+
1.7.0 K Hoang 06/08/2020 Sync with Arduino WiFiNINA Library v1.7.0 : Add downloadOTA() and verify length/CRC
4748
*****************************************************************************************************************************/
4849
#include "defines.h"
4950
#include "arduino_secrets.h"

examples/ConnectWithWPA2Enterprise/defines.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
License along with this library; if not, write to the Free Software
2626
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2727
28-
Version: 1.6.2
28+
Version: 1.7.0
2929
3030
Version Modified By Date Comments
3131
------- ----------- ---------- -----------
@@ -36,9 +36,10 @@
3636
1.5.2 K Hoang 09/05/2020 Port FirmwareUpdater to permit nRF52, Teensy, SAMD21, SAMD51, etc. boards to update WiFiNINA
3737
W101/W102 firmware and SSL certs on IDE. Update default pin-outs.
3838
1.5.3 K Hoang 14/07/2020 Add function to support new WebSockets2_Generic Library
39-
1.6.0 K Hoang 19/07/2020 Sync with Aruino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
40-
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
41-
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
39+
1.6.0 K Hoang 19/07/2020 Sync with Arduino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
40+
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
41+
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
42+
1.7.0 K Hoang 06/08/2020 Sync with Arduino WiFiNINA Library v1.7.0 : Add downloadOTA() and verify length/CRC
4243
*****************************************************************************************************************************/
4344

4445
#ifndef defines_h

examples/ScanNetworks/ScanNetworks.ino

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
License along with this library; if not, write to the Free Software
3838
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
3939
40-
Version: 1.6.2
40+
Version: 1.7.0
4141
4242
Version Modified By Date Comments
4343
------- ----------- ---------- -----------
@@ -48,9 +48,10 @@
4848
1.5.2 K Hoang 09/05/2020 Port FirmwareUpdater to permit nRF52, Teensy, SAMD21, SAMD51, etc. boards to update WiFiNINA
4949
W101/W102 firmware and SSL certs on IDE. Update default pin-outs.
5050
1.5.3 K Hoang 14/07/2020 Add function to support new WebSockets2_Generic Library
51-
1.6.0 K Hoang 19/07/2020 Sync with Aruino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
52-
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
53-
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
51+
1.6.0 K Hoang 19/07/2020 Sync with Arduino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
52+
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
53+
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
54+
1.7.0 K Hoang 06/08/2020 Sync with Arduino WiFiNINA Library v1.7.0 : Add downloadOTA() and verify length/CRC
5455
*****************************************************************************************************************************/
5556

5657
#include "defines.h"

examples/ScanNetworks/defines.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
License along with this library; if not, write to the Free Software
2626
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2727
28-
Version: 1.6.2
28+
Version: 1.7.0
2929
3030
Version Modified By Date Comments
3131
------- ----------- ---------- -----------
@@ -36,9 +36,10 @@
3636
1.5.2 K Hoang 09/05/2020 Port FirmwareUpdater to permit nRF52, Teensy, SAMD21, SAMD51, etc. boards to update WiFiNINA
3737
W101/W102 firmware and SSL certs on IDE. Update default pin-outs.
3838
1.5.3 K Hoang 14/07/2020 Add function to support new WebSockets2_Generic Library
39-
1.6.0 K Hoang 19/07/2020 Sync with Aruino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
40-
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
41-
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
39+
1.6.0 K Hoang 19/07/2020 Sync with Arduino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
40+
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
41+
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
42+
1.7.0 K Hoang 06/08/2020 Sync with Arduino WiFiNINA Library v1.7.0 : Add downloadOTA() and verify length/CRC
4243
*****************************************************************************************************************************/
4344

4445
#ifndef defines_h

examples/ScanNetworksAdvanced/ScanNetworksAdvanced.ino

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
License along with this library; if not, write to the Free Software
3939
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
4040
41-
Version: 1.6.2
41+
Version: 1.7.0
4242
4343
Version Modified By Date Comments
4444
------- ----------- ---------- -----------
@@ -49,9 +49,10 @@
4949
1.5.2 K Hoang 09/05/2020 Port FirmwareUpdater to permit nRF52, Teensy, SAMD21, SAMD51, etc. boards to update WiFiNINA
5050
W101/W102 firmware and SSL certs on IDE. Update default pin-outs.
5151
1.5.3 K Hoang 14/07/2020 Add function to support new WebSockets2_Generic Library
52-
1.6.0 K Hoang 19/07/2020 Sync with Aruino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
53-
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
54-
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
52+
1.6.0 K Hoang 19/07/2020 Sync with Arduino WiFiNINA Library v1.6.0 (new Firmware 1.4.0 and WiFiStorage)
53+
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
54+
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
55+
1.7.0 K Hoang 06/08/2020 Sync with Arduino WiFiNINA Library v1.7.0 : Add downloadOTA() and verify length/CRC
5556
*****************************************************************************************************************************/
5657

5758
#include "defines.h"

0 commit comments

Comments
 (0)