From 43c1f319758ff2ef09e428086f3a27e2c886ce1d Mon Sep 17 00:00:00 2001 From: Edward Wright Date: Sun, 9 Jun 2019 21:04:33 -0400 Subject: [PATCH] cleaned up help message --- SimplySerial/SimplySerial.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SimplySerial/SimplySerial.cs b/SimplySerial/SimplySerial.cs index 5745f38..396fc11 100644 --- a/SimplySerial/SimplySerial.cs +++ b/SimplySerial/SimplySerial.cs @@ -420,9 +420,9 @@ namespace SimplySerial /// static void ShowHelp() { - Console.WriteLine("\nUsage: ss.exe [-help] [-com:PORT] [-baud:RATE] [-parity:PARITY] [-databits:VALUE]"); - Console.WriteLine(" [-stopbits:VALUE][-quiet][-nowait]\n"); - Console.WriteLine("Barebones serial terminal for IoT device programming in general, and working with"); + Console.WriteLine("\nUsage: ss.exe [-help] [-com:PORT] [-baud:RATE] [-parity:PARITY] [-databits:VAL]"); + Console.WriteLine(" [-stopbits:VAL][-autoconnect:VAL][-quiet]\n"); + Console.WriteLine("A basic serial terminal for IoT device programming in general, and working with"); Console.WriteLine("CircuitPython devices specifically! With no command-line arguments specified,"); Console.WriteLine("SimplySerial will attempt to identify and connect to a CircuitPython-capable board"); Console.WriteLine("at 9600 baud, no parity, 8 data bits and 1 stop bit. If no known boards are"); @@ -439,7 +439,7 @@ namespace SimplySerial Console.WriteLine(" -autoconnect:VAL NONE| ONE | ANY, enable/disable auto-(re)connection when"); Console.WriteLine(" a device is disconnected / reconnected."); Console.WriteLine(" -quiet don't print any application messages/errors to console"); - Console.WriteLine(" Press CTRL-X to exit a running instance of SimplySerial."); + Console.WriteLine("\nPress CTRL-X to exit a running instance of SimplySerial.\n"); }