From 9e5fd0bf8caad47af36b5e66fa9bf1dd12e636de Mon Sep 17 00:00:00 2001 From: Martin Preuss Date: Mon, 16 Feb 2026 01:11:40 +0100 Subject: [PATCH] add support for e01. --- flashnode.sh | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/flashnode.sh b/flashnode.sh index c04a68c..d037a08 100755 --- a/flashnode.sh +++ b/flashnode.sh @@ -142,6 +142,15 @@ case $NODE in EFUSE_ARG="-U efuse:w:0xFE:m" FILE_ARG="-U flash:w:./0-build/avr/devices/t04/boot/t04_boot.hex" ;; + + e01) + DEVICE_ARG="-p t841" + 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/e01/boot/e01_boot.hex" + ;; + *) echo "Unknown node $NODE". exit 1