From 4f02edbabab7ba84ea88a0e1299256f296befa98 Mon Sep 17 00:00:00 2001 From: J-Rios Date: Sat, 24 Nov 2018 18:15:47 +0100 Subject: [PATCH] Added more default baud rates to select in Bauds combobox. --- SUSTerm/constants.h | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/SUSTerm/constants.h b/SUSTerm/constants.h index 6b123c4..d657b53 100644 --- a/SUSTerm/constants.h +++ b/SUSTerm/constants.h @@ -25,6 +25,7 @@ const int eol_default_value = 1; // 1 = New Line QStringList static comboBox_bauds_values = { + "300", "1200", "2400", "4800", @@ -32,9 +33,15 @@ QStringList static comboBox_bauds_values = "19200", "38400", "57600", - "115200" + "74880", + "115200", + "230400", + "250000", + "500000", + "1000000", + "2000000" }; -const int bauds_default_value = 7; // 7 = 115200 +const int bauds_default_value = 9; // 9 = 115200 const QString ABOUT_TEXT = "SUSTerm (Simple Universal Serial Terminal) is a free and open GNU-GPL software which is " \