Advanced version by one patch

This commit is contained in:
ZodiusInfuser
2021-03-26 15:39:12 +00:00
parent d0074840ab
commit 6782e16f47
4 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
Adafruit's Arduino NINA-W102 firmware 1.7.2 - 2021.03.22
Adafruit's Arduino NINA-W102 firmware 1.7.3 - 2021.03.26
* Changed Analog Write to use full PWM range.
* Added support to Pin Mode for INPUT_PULLUP.

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.7.2.bin
esptool.py --port $(M4_PORT) --before no_reset --baud $(UPLOAD_BAUD) write_flash 0 NINA_W102-1.7.3.bin
load-circuitpython:
cp $(CIRCUITPYTHON_UF2) $(BOOT_VOLUME)

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.7.2.bin"
outputFilename = "NINA_W102-1.7.3.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.7.2";
const char FIRMWARE_VERSION[6] = "1.7.3";
// Optional, user-defined X.509 certificate
char CERT_BUF[1300];