From 4ee10ea8a7dd3620bea768af4fb7cfd3c6bc4442 Mon Sep 17 00:00:00 2001 From: Stefan Rueger Date: Sat, 10 Jun 2023 19:06:41 +0100 Subject: [PATCH] Add more info for the dryrun programmer --- src/avrdude.conf.in | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/avrdude.conf.in b/src/avrdude.conf.in index 1cc82043..a87c41c2 100644 --- a/src/avrdude.conf.in +++ b/src/avrdude.conf.in @@ -777,6 +777,18 @@ programmer # dryrun #------------------------------------------------------------ +# Using -c dryrun is a good way to get acquainted with AVRDUDE and its +# command line -U memory operations, -T terminal commands or the +# interactive terminal -t. No hardware needs to be connected, as the +# dryrun programmer emulates what can be expected to happen with a real +# -c programmer and a corresponding connected physical programmer or a +# directly connected board when it has a bootloader. +# +# Examples: +# avrdude -c dryrun -p ATmega328P -t # Interactive terminal: enter help +# avrdude -c dryrun -p ATmega2560 -U flash:w:myapplication.hex:i +# avrdude -c dryrun -p AVR64DB48 -Tconfig + programmer id = "dryrun"; desc = "Emulates programming without a programmer";