From 100ad9004f4efa2d75d03cb436a722a3342e409d Mon Sep 17 00:00:00 2001 From: Stefan Rueger Date: Sat, 10 Jun 2023 16:24:22 +0100 Subject: [PATCH] Add example for -p .../s and -c .../s in main's help text --- src/main.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/main.c b/src/main.c index 36e5cdbe..cc741540 100644 --- a/src/main.c +++ b/src/main.c @@ -225,12 +225,14 @@ static void usage(void) "Usage: %s [options]\n" "Options:\n" " -p Specify AVR device\n" - " -p / Run developer options for matched AVR devices\n" + " -p / Run developer options for matched AVR devices,\n" + " e.g., -p ATmega328P/s or /S for part definition\n" " -b Override RS-232 baud rate\n" " -B Specify bit clock period (us)\n" " -C Specify location of configuration file\n" " -c Specify programmer type\n" - " -c / Run developer options for matched programmers\n" + " -c / Run developer options for matched programmers,\n" + " e.g., -c 'ur*'/s for programmer info/definition\n" " -A Disable trailing-0xff removal for file/AVR read\n" " -D Disable auto erase for flash memory; implies -A\n" " -i ISP Clock Delay [in microseconds]\n"