1、串口打开时的日志打印修正波特率打印内容

This commit is contained in:
Mr.V 2024-03-21 11:24:36 +08:00
parent 3f05a63aee
commit 76f2fd874c
1 changed files with 1 additions and 1 deletions

View File

@ -621,7 +621,7 @@ void MainWindow::openComClicked()
QString logs;
logs.append("串口打开成功\n");
logs.append("串口号:" + ui->comBox->currentText() + "\n");
logs.append("波特率:" + QString::number(ui->BTBox->currentIndex()) + "\n");
logs.append("波特率:" + ui->BTBox->currentText() + "\n");
logs.append("磁钢顺序:" + this->baseConfig_.magnetSteelOrder);
this->isOpenCom = true;
this->logInfo(logs);