From dfa76d4d6fadbc4c375b1a7e28747cd6067e6020 Mon Sep 17 00:00:00 2001 From: brentru Date: Fri, 21 Jul 2023 13:44:04 -0400 Subject: [PATCH] update --- CHANGELOG | 4 ++++ Makefile | 2 +- combine.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 3c8e9a3d..febf1b43 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +Adafruit's Arduino NINA-W102 firmware 1.7.5 - 2023.07.21 + +* Fixed Adafruit IO Root SSL Certificate + Adafruit's Arduino NINA-W102 firmware 1.7.4 - 2021.06.03 * Fixed support for custom hostname in WiFi client mode diff --git a/Makefile b/Makefile index 9f9f702a..dc7f7c33 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,7 @@ load-passthrough: cp passthrough.UF2 $(BOOT_VOLUME) load-nina: - esptool.py --port $(M4_PORT) --before no_reset --baud $(UPLOAD_BAUD) write_flash 0 NINA_W102-1.7.4.bin + esptool.py --port $(M4_PORT) --before no_reset --baud $(UPLOAD_BAUD) write_flash 0 NINA_W102-1.7.5.bin load-circuitpython: cp $(CIRCUITPYTHON_UF2) $(BOOT_VOLUME) diff --git a/combine.py b/combine.py index 7f9de2d0..6a4e3e04 100644 --- a/combine.py +++ b/combine.py @@ -31,7 +31,7 @@ # zero terminate the pem file outputData[0x10000 + len(certsData)] = 0 -outputFilename = "NINA_W102-1.7.4.bin" +outputFilename = "NINA_W102-1.7.5.bin" if (len(sys.argv) > 1): outputFilename = sys.argv[1]