From b7c32ab1577fe4ced40e997bd03c4a40826f4f5a Mon Sep 17 00:00:00 2001 From: riegaz Date: Sat, 20 May 2017 11:45:23 +0200 Subject: [PATCH] Higher baudrate options would be nice Added 256000 and 460800 to the selectable baudrates --- mainwindow.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mainwindow.cpp b/mainwindow.cpp index a391f4f..5057bb8 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -22,6 +22,8 @@ MainWindow::MainWindow(QWidget *parent) : ui->baudBox->addItem(QStringLiteral("38400"), QSerialPort::Baud38400); ui->baudBox->addItem(QStringLiteral("57600"), QSerialPort::Baud57600); ui->baudBox->addItem(QStringLiteral("115200"), QSerialPort::Baud115200); + ui->baudBox->addItem(QStringLiteral("256000"), QSerialPort::Baud256000); + ui->baudBox->addItem(QStringLiteral("460800"), QSerialPort::Baud460800); ui->baudBox->setCurrentIndex(7); // Default 115200 ui->filePathText->setDisabled(true);