This commit is contained in:
anecdata
2019-10-17 10:51:01 -05:00
parent 687498c981
commit fa5f7a5486
3 changed files with 4 additions and 4 deletions

View File

@@ -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
.PHONY: serial

View File

@@ -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]

View File

@@ -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];