avr: added e04 and e05.

This commit is contained in:
Martin Preuss
2026-04-27 00:40:00 +02:00
parent accc7d41a2
commit 5e7c01c100
20 changed files with 1247 additions and 0 deletions

View File

@@ -153,6 +153,22 @@ case $NODE in
FILE_ARG="-U flash:w:./0-build/avr/devices/e03/boot/e03_boot.hex"
;;
e04)
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/e04/boot/e04_boot.hex"
;;
e05)
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/e05/boot/e05_boot.hex"
;;
*)
echo "Unknown node $NODE".
exit 1