Skip to content

Commit

Permalink
Added more default baud rates to select in Bauds combobox.
Browse files Browse the repository at this point in the history
  • Loading branch information
J-Rios committed Nov 24, 2018
1 parent 4cb8ee6 commit 4f02edb
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions SUSTerm/constants.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,23 @@ const int eol_default_value = 1; // 1 = New Line

QStringList static comboBox_bauds_values =
{
"300",
"1200",
"2400",
"4800",
"9600",
"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 " \
Expand Down

0 comments on commit 4f02edb

Please sign in to comment.