From 0761907067eb369b25f509caaa2e2f4790ed34d2 Mon Sep 17 00:00:00 2001 From: ole00 Date: Wed, 3 Apr 2024 21:43:32 +0100 Subject: [PATCH] PC App: fixed help text: serial port information --- src_pc/afterburner.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src_pc/afterburner.c b/src_pc/afterburner.c index 148f7bf..51c8065 100644 --- a/src_pc/afterburner.c +++ b/src_pc/afterburner.c @@ -184,8 +184,8 @@ static void printHelp() { printGalTypes(); printf("\n"); printf(" -f : JEDEC fuse map file\n"); - printf(" -d : name of the serial device. Default is: %s\n", DEFAULT_SERIAL_DEVICE_NAME); - printf(" serial params are: 38400, 8N1\n"); + printf(" -d : name of the serial device. Without this option the device is guessed.\n"); + printf(" serial params are: 57600, 8N1\n"); printf(" -nc : do not check device GAL type before operation: force the GAL type set on command line\n"); printf(" -sec: enable security - protect the chip. Use with 'w' or 'v' commands.\n"); printf(" -co : Set calibration offset. Use with 'b' command. Value: -20 (-0.2V) to 25 (+0.25V)\n");