Corrected databits options in help message

This commit is contained in:
Edward Wright 2021-10-27 23:21:56 -04:00
parent 8caf66b66a
commit 68f839f002

View File

@ -580,7 +580,6 @@ namespace SimplySerial
// TODO: Display board.json version (or note if file could not be found) // TODO: Display board.json version (or note if file could not be found)
// TODO: Correct databits options
/// <summary> /// <summary>
/// Displays help information about this application and its command-line arguments /// Displays help information about this application and its command-line arguments
@ -614,7 +613,7 @@ namespace SimplySerial
Console.WriteLine(" -baud:RATE 1200 | 2400 | 4800 | 7200 | 9600 | 14400 | 19200 | 38400 |"); Console.WriteLine(" -baud:RATE 1200 | 2400 | 4800 | 7200 | 9600 | 14400 | 19200 | 38400 |");
Console.WriteLine(" 57600 | 115200 | (Any valid baud rate for the specified port.)"); Console.WriteLine(" 57600 | 115200 | (Any valid baud rate for the specified port.)");
Console.WriteLine(" -parity:PARITY NONE | EVEN | ODD | MARK | SPACE"); Console.WriteLine(" -parity:PARITY NONE | EVEN | ODD | MARK | SPACE");
Console.WriteLine(" -databits:VAL 4 | 5 | | 7 | 8"); Console.WriteLine(" -databits:VAL 4 | 5 | 6 | 7 | 8");
Console.WriteLine(" -stopbits:VAL 0 | 1 | 1.5 | 2"); Console.WriteLine(" -stopbits:VAL 0 | 1 | 1.5 | 2");
Console.WriteLine(" -autoconnect:VAL NONE| ONE | ANY, enable/disable auto-(re)connection when"); Console.WriteLine(" -autoconnect:VAL NONE| ONE | ANY, enable/disable auto-(re)connection when");
Console.WriteLine(" a device is disconnected / reconnected."); Console.WriteLine(" a device is disconnected / reconnected.");