Skip to content

Commit 4f02edb

Browse files
committed
Added more default baud rates to select in Bauds combobox.
1 parent 4cb8ee6 commit 4f02edb

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

SUSTerm/constants.h

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,23 @@ const int eol_default_value = 1; // 1 = New Line
2525

2626
QStringList static comboBox_bauds_values =
2727
{
28+
"300",
2829
"1200",
2930
"2400",
3031
"4800",
3132
"9600",
3233
"19200",
3334
"38400",
3435
"57600",
35-
"115200"
36+
"74880",
37+
"115200",
38+
"230400",
39+
"250000",
40+
"500000",
41+
"1000000",
42+
"2000000"
3643
};
37-
const int bauds_default_value = 7; // 7 = 115200
44+
const int bauds_default_value = 9; // 9 = 115200
3845

3946
const QString ABOUT_TEXT =
4047
"SUSTerm (Simple Universal Serial Terminal) is a free and open GNU-GPL software which is " \

0 commit comments

Comments
 (0)