52c4723dd9
- 增加了周期扫描可用串口功能 - 增加了发送数据功能 - 增加了接受数据功能 - 增加了在连接串口后禁止更改参数功能
15 lines
194 B
C++
15 lines
194 B
C++
#include "setting.h"
|
|
#include "ui_setting.h"
|
|
|
|
setting::setting(QWidget *parent) :
|
|
QWidget(parent),
|
|
ui(new Ui::setting)
|
|
{
|
|
ui->setupUi(this);
|
|
}
|
|
|
|
setting::~setting()
|
|
{
|
|
delete ui;
|
|
}
|