From 8ae50a8d604e7b8a17727733818c3bd4043ef722 Mon Sep 17 00:00:00 2001 From: Martin Preuss Date: Sun, 1 Jun 2025 22:37:46 +0200 Subject: [PATCH] fixed flashnode.sh for n24, added n25 --- flashnode.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/flashnode.sh b/flashnode.sh index e4156ac..e881362 100755 --- a/flashnode.sh +++ b/flashnode.sh @@ -63,7 +63,14 @@ case $NODE in HFUSE_ARG="-U hfuse:w:0xD7:m" LFUSE_ARG="" EFUSE_ARG="-U efuse:w:0xFE:m" - FILE_ARG="-U flash:w:./0-build/avr/devices/n23/boot/n23_boot.hex" + FILE_ARG="-U flash:w:./0-build/avr/devices/n24/boot/n24_boot.hex" + ;; + n25) + DEVICE_ARG="-p t84" + HFUSE_ARG="-U hfuse:w:0xD7:m" + LFUSE_ARG="" + EFUSE_ARG="-U efuse:w:0xFE:m" + FILE_ARG="-U flash:w:./0-build/avr/devices/n25/boot/n25_boot.hex" ;; t03) DEVICE_ARG="-p t841"