From fa5f7a54867d9734a84cd6643739396bce6a7df6 Mon Sep 17 00:00:00 2001 From: anecdata <16617689+anecdata@users.noreply.github.com> Date: Thu, 17 Oct 2019 10:51:01 -0500 Subject: [PATCH] v1.5.0. --- Makefile | 4 ++-- combine.py | 2 +- main/CommandHandler.cpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 4ee9c75..b58702d 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.4.0.bin + esptool.py --port $(M4_PORT) --before no_reset --baud $(UPLOAD_BAUD) write_flash 0 NINA_W102-1.5.0.bin load-circuitpython: cp $(CIRCUITPYTHON_UF2) $(BOOT_VOLUME) @@ -47,4 +47,4 @@ firmware: all .PHONY: load-circuitpython -.PHONY: serial \ No newline at end of file +.PHONY: serial diff --git a/combine.py b/combine.py index 127d1c3..25951a4 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.4.1.bin" +outputFilename = "NINA_W102-1.5.0.bin" if (len(sys.argv) > 1): outputFilename = sys.argv[1] diff --git a/main/CommandHandler.cpp b/main/CommandHandler.cpp index 3cc6f15..ebf6dde 100644 --- a/main/CommandHandler.cpp +++ b/main/CommandHandler.cpp @@ -28,7 +28,7 @@ #include "Arduino.h" -const char FIRMWARE_VERSION[6] = "1.4.1"; +const char FIRMWARE_VERSION[6] = "1.5.0"; // Optional, user-defined X.509 certificate char CERT_BUF[1300];