Skip to content

Commit 6ca61c9

Browse files
authored
Merge pull request #34 from arduino/add_baudrates
Added some missing baudrates
2 parents 8d1998f + 039c3a5 commit 6ca61c9

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

main.go

+8-3
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,14 @@ func NewSerialMonitor() *SerialMonitor {
5959
Protocol: "serial",
6060
ConfigurationParameter: map[string]*monitor.PortParameterDescriptor{
6161
"baudrate": {
62-
Label: "Baudrate",
63-
Type: "enum",
64-
Values: []string{"300", "600", "750", "1200", "2400", "4800", "9600", "19200", "38400", "57600", "115200", "230400", "460800", "500000", "921600", "1000000", "2000000"},
62+
Label: "Baudrate",
63+
Type: "enum",
64+
Values: []string{
65+
"300", "600", "750",
66+
"1200", "2400", "4800", "9600",
67+
"19200", "31250", "38400", "57600", "74880",
68+
"115200", "230400", "250000", "460800", "500000", "921600",
69+
"1000000", "2000000"},
6570
Selected: "9600",
6671
},
6772
"parity": {

0 commit comments

Comments
 (0)