From 039c3a5fcbce56ab0f4f00d6c35d202cd87d1a29 Mon Sep 17 00:00:00 2001 From: Cristian Maglie Date: Thu, 1 Dec 2022 11:09:49 +0100 Subject: [PATCH] Added some missing baudrates --- main.go | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/main.go b/main.go index 707711e..3c5e5c0 100644 --- a/main.go +++ b/main.go @@ -59,9 +59,14 @@ func NewSerialMonitor() *SerialMonitor { Protocol: "serial", ConfigurationParameter: map[string]*monitor.PortParameterDescriptor{ "baudrate": { - Label: "Baudrate", - Type: "enum", - Values: []string{"300", "600", "750", "1200", "2400", "4800", "9600", "19200", "38400", "57600", "115200", "230400", "460800", "500000", "921600", "1000000", "2000000"}, + Label: "Baudrate", + Type: "enum", + Values: []string{ + "300", "600", "750", + "1200", "2400", "4800", "9600", + "19200", "31250", "38400", "57600", "74880", + "115200", "230400", "250000", "460800", "500000", "921600", + "1000000", "2000000"}, Selected: "9600", }, "parity": {