Просмотр исходного кода

Fixed baudRate: 9600 -> 115200

Dmitry Yu Okunev лет назад: 8
Родитель
Сommit
f38581f74e
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      mainwindow.cpp

+ 1 - 1
mainwindow.cpp

@@ -94,7 +94,7 @@ void MainWindow::openRemote()
     qDebug("openRemote(): %s", this->ui->ttyPathEdit->toPlainText().toStdString().c_str());
     //SettingsDialog::Settings p = settings->settings();
     this->remote->setPortName(this->ui->ttyPathEdit->toPlainText());
-    this->remote->setBaudRate(9600);
+    this->remote->setBaudRate(115200);
     this->remote->setDataBits(QSerialPort::Data8);
     this->remote->setParity(QSerialPort::NoParity);
     this->remote->setStopBits(QSerialPort::OneStop);