From e1385807c839ae7ca3a7ca8687904c18bf8d70d2 Mon Sep 17 00:00:00 2001 From: Phil Howard Date: Thu, 3 Jun 2021 15:04:53 +0100 Subject: [PATCH] Bump version to 1.7.4 --- CHANGELOG | 4 ++++ Makefile | 2 +- combine.py | 2 +- main/CommandHandler.cpp | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index b1301db..4cf6227 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +Adafruit's Arduino NINA-W102 firmware 1.7.4 - 2021.06.03 + +* Fixed support for custom hostname in WiFi client mode + Adafruit's Arduino NINA-W102 firmware 1.7.3 - 2021.03.26 * Changed Analog Write to use full PWM range. diff --git a/Makefile b/Makefile index 7db582a..9f9f702 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.3.bin + esptool.py --port $(M4_PORT) --before no_reset --baud $(UPLOAD_BAUD) write_flash 0 NINA_W102-1.7.4.bin load-circuitpython: cp $(CIRCUITPYTHON_UF2) $(BOOT_VOLUME) diff --git a/combine.py b/combine.py index a637d9d..7f9de2d 100644 --- a/combine.py +++ b/combine.py @@ -31,7 +31,7 @@ for i in range(0, len(certsData)): # zero terminate the pem file outputData[0x10000 + len(certsData)] = 0 -outputFilename = "NINA_W102-1.7.3.bin" +outputFilename = "NINA_W102-1.7.4.bin" if (len(sys.argv) > 1): outputFilename = sys.argv[1] diff --git a/main/CommandHandler.cpp b/main/CommandHandler.cpp index f9072a7..afada24 100644 --- a/main/CommandHandler.cpp +++ b/main/CommandHandler.cpp @@ -28,7 +28,7 @@ #include "Arduino.h" -const char FIRMWARE_VERSION[6] = "1.7.3"; +const char FIRMWARE_VERSION[6] = "1.7.4"; // Optional, user-defined X.509 certificate char CERT_BUF[1300];