Browse Source

GeneralSettings: Add additional baudrates for nmea GPS source

This adds additional common baudrates to the nmea source baudrates
dropdown menu.
QGC4.4
Philipp Borgers 3 years ago committed by Patrick José Pereira
parent
commit
be56d7d90f
  1. 2
      src/ui/preferences/GeneralSettings.qml

2
src/ui/preferences/GeneralSettings.qml

@ -822,7 +822,7 @@ Rectangle { @@ -822,7 +822,7 @@ Rectangle {
visible: nmeaPortCombo.currentText !== gpsUdpPort && nmeaPortCombo.currentText !== gpsDisabled
id: nmeaBaudCombo
Layout.preferredWidth: _comboFieldWidth
model: [4800, 9600, 19200, 38400, 57600, 115200]
model: [1200, 2400, 4800, 9600, 19200, 38400, 57600, 115200, 230400, 460800, 921600]
onActivated: {
if (index != -1) {

Loading…
Cancel
Save