-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathserialportwidget.cpp
358 lines (287 loc) · 11.4 KB
/
serialportwidget.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
/*
* Copyright (C) 2012 Jorge Aparicio <jorge.aparicio.r@gmail.com>
*
* This file is part of qSerialTerm.
*
* qSerialTerm is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
* qSerialTerm is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with qSerialTerm. If not, see <http://www.gnu.org/licenses/>.
*/
#include "serialportwidget.h"
#include "ui_serialportwidget.h"
#include <QMessageBox>
#define REFRESH_RATE_MS 40
QT_USE_NAMESPACE_SERIALPORT
Q_DECLARE_METATYPE(SerialPort::DataBits)
Q_DECLARE_METATYPE(SerialPort::StopBits)
Q_DECLARE_METATYPE(SerialPort::Parity)
Q_DECLARE_METATYPE(SerialPort::FlowControl)
SerialPortWidget::SerialPortWidget(QWidget *parent) :
QWidget(parent),
ui(new Ui::SerialPortWidget),
serialPort(0),
refreshRateTimer(0),
isThereCommunication(false)
{
ui->setupUi(this);
ui->dataBitsComboBox->addItem(QLatin1String("5"),
SerialPort::Data5);
ui->dataBitsComboBox->addItem(QLatin1String("6"),
SerialPort::Data6);
ui->dataBitsComboBox->addItem(QLatin1String("7"),
SerialPort::Data7);
ui->dataBitsComboBox->addItem(QLatin1String("8"),
SerialPort::Data8);
ui->dataBitsComboBox->setCurrentIndex(-1);
ui->stopBitsComboBox->addItem(QLatin1String("1"),
SerialPort::OneStop);
ui->stopBitsComboBox->addItem(QLatin1String("1.5"),
SerialPort::OneAndHalfStop);
ui->stopBitsComboBox->addItem(QLatin1String("2"),
SerialPort::TwoStop);
ui->stopBitsComboBox->setCurrentIndex(-1);
ui->parityComboBox->addItem(QLatin1String("No"),
SerialPort::NoParity);
ui->parityComboBox->addItem(QLatin1String("Even"),
SerialPort::EvenParity);
ui->parityComboBox->addItem(QLatin1String("Odd"),
SerialPort::OddParity);
ui->parityComboBox->addItem(QLatin1String("Space"),
SerialPort::SpaceParity);
ui->parityComboBox->addItem(QLatin1String("Mark"),
SerialPort::MarkParity);
ui->parityComboBox->setCurrentIndex(-1);
ui->flowControlComboBox->addItem(QLatin1String("No"),
SerialPort::NoFlowControl);
ui->flowControlComboBox->addItem(QLatin1String("Hardware"),
SerialPort::HardwareControl);
ui->flowControlComboBox->addItem(QLatin1String("Software"),
SerialPort::SoftwareControl);
ui->flowControlComboBox->setCurrentIndex(-1);
}
SerialPortWidget::~SerialPortWidget()
{
delete ui;
}
void SerialPortWidget::write(QByteArray data)
{
if (refreshRateTimer) // There is ongoing communication
serialPort->write(data);
}
void SerialPortWidget::on_getPortsPushButton_clicked()
{
serialPortInfoList = SerialPortInfo::availablePorts();
ui->portComboBox->clear();
foreach(SerialPortInfo entry, serialPortInfoList)
ui->portComboBox->addItem(entry.portName());
}
void SerialPortWidget::on_openPortPushButton_clicked()
{
if (serialPort) {
if (refreshRateTimer) // Communication ongoing
on_startCommunicationPushButton_clicked();
serialPort->close();
delete serialPort;
serialPort = 0;
ui->portStatusLabel->setText(QLatin1String("<font color=red>"
"Closed"
"</font>"));
ui->openPortPushButton->setText(QLatin1String("Open"));
ui->portComboBox->setEnabled(true);
ui->getPortsPushButton->setEnabled(true);
disableCommunicationSettings();
ui->baudRateComboBox->setCurrentIndex(-1);
ui->dataBitsComboBox->setCurrentIndex(-1);
ui->stopBitsComboBox->setCurrentIndex(-1);
ui->parityComboBox->setCurrentIndex(-1);
ui->flowControlComboBox->setCurrentIndex(-1);
} else {
serialPort = new SerialPort(ui->portComboBox->currentText());
if (serialPort->open(QIODevice::ReadWrite)) {
enableCommunicationSettings();
ui->portStatusLabel->setText(QLatin1String("<font color=green>"
"Open"
"</font>"));
ui->openPortPushButton->setText(QLatin1String("Close"));
ui->portComboBox->setDisabled(true);
ui->getPortsPushButton->setDisabled(true);
} else {
QMessageBox::warning(this,
QLatin1String("Port error"),
QLatin1String("Couldn't open the requested port"));
delete serialPort;
serialPort = 0;
}
}
}
void SerialPortWidget::on_startCommunicationPushButton_clicked()
{
if (refreshRateTimer) { // There is ongoing communication
enableCommunicationSettings();
ui->startCommunicationPushButton->setText(QLatin1String("Start"));
ui->communicationStatusLabel->setText(QLatin1String("<font color=red>"
"No communication"
"</font>"));
delete refreshRateTimer;
refreshRateTimer = 0;
emit communicationStart(false);
} else {
disableCommunicationSettings();
ui->startCommunicationPushButton->setText(QLatin1String("Stop"));
ui->communicationStatusLabel->setText(QLatin1String("<font color=green>"
"Ongoing"
"</font>"));
refreshRateTimer = new QTimer(this);
connect(refreshRateTimer, SIGNAL(timeout()),
this, SLOT(on_refreshRateTimer_timeout()));
refreshRateTimer->start(REFRESH_RATE_MS);
emit communicationStart(true);
}
}
void SerialPortWidget::on_portComboBox_currentIndexChanged(int index)
{
if (index == -1) {
ui->openPortPushButton->setDisabled(true);
ui->baudRateComboBox->clear();
ui->pidLabel->setText(QLatin1String("-"));
ui->vidLabel->setText(QLatin1String("-"));
ui->portStatusLabel->setText(QLatin1String("<font color=red>"
"No port selected"
"</font>"));
} else {
ui->openPortPushButton->setEnabled(true);
QList<qint32> baudRateList = serialPortInfoList[index].standardRates();
ui->baudRateComboBox->clear();
foreach (qint32 baudRate, baudRateList)
ui->baudRateComboBox->addItem(QString::number(baudRate), baudRate);
ui->baudRateComboBox->setCurrentIndex(-1);
QString vid = serialPortInfoList[index].vendorIdentifier();
if (vid.isEmpty())
ui->vidLabel->setText(QLatin1String("-"));
else
ui->vidLabel->setText(QLatin1String("0x") + vid);
QString pid = serialPortInfoList[index].productIdentifier();
if (pid.isEmpty())
ui->pidLabel->setText(QLatin1String("-"));
else
ui->pidLabel->setText(QLatin1String("0x") + pid);
ui->portStatusLabel->setText(QLatin1String("<font color=red>"
"Closed"
"</font>"));
}
}
void SerialPortWidget::on_baudRateComboBox_currentIndexChanged(int index)
{
if (index != -1 && serialPort != 0) {
if(serialPort->setRate(ui->baudRateComboBox->itemData(index).value<int>())) {
validateCommunicationSettings();
return;
} else {
QMessageBox::warning(this,
QLatin1String("Configuration error"),
QLatin1String("Couldn't change the baud rate."));
ui->baudRateComboBox->setCurrentIndex(-1);
}
}
ui->startCommunicationPushButton->setDisabled(true);
}
void SerialPortWidget::on_dataBitsComboBox_currentIndexChanged(int index)
{
if (index != -1 && serialPort != 0) {
if(serialPort->setDataBits(ui->dataBitsComboBox->itemData(index).value<SerialPort::DataBits>())) {
validateCommunicationSettings();
return;
} else {
QMessageBox::warning(this,
QLatin1String("Configuration error"),
QLatin1String("Couldn't change the numbers of data bits."));
ui->dataBitsComboBox->setCurrentIndex(-1);
}
}
ui->startCommunicationPushButton->setDisabled(true);
}
void SerialPortWidget::on_stopBitsComboBox_currentIndexChanged(int index)
{
if (index != -1 && serialPort != 0) {
if(serialPort->setStopBits(ui->stopBitsComboBox->itemData(index).value<SerialPort::StopBits>())) {
validateCommunicationSettings();
return;
} else {
QMessageBox::warning(this,
QLatin1String("Configuration error"),
QLatin1String("Couldn't change the numbers of stop bits."));
ui->stopBitsComboBox->setCurrentIndex(-1);
}
}
ui->startCommunicationPushButton->setDisabled(true);
}
void SerialPortWidget::on_parityComboBox_currentIndexChanged(int index)
{
if (index != -1 && serialPort != 0) {
if(serialPort->setParity(ui->parityComboBox->itemData(index).value<SerialPort::Parity>())) {
validateCommunicationSettings();
return;
} else {
QMessageBox::warning(this,
QLatin1String("Configuration error"),
QLatin1String("Couldn't change the parity."));
ui->parityComboBox->setCurrentIndex(-1);
}
}
ui->startCommunicationPushButton->setDisabled(true);
}
void SerialPortWidget::on_flowControlComboBox_currentIndexChanged(int index)
{
if (index != -1 && serialPort != 0) {
if(serialPort->setFlowControl(ui->flowControlComboBox->itemData(index).value<SerialPort::FlowControl>())) {
validateCommunicationSettings();
return;
} else {
QMessageBox::warning(this,
QLatin1String("Configuration error"),
QLatin1String("Couldn't change the flow control."));
ui->flowControlComboBox->setCurrentIndex(-1);
}
}
ui->startCommunicationPushButton->setDisabled(true);
}
void SerialPortWidget::on_refreshRateTimer_timeout()
{
emit read(serialPort->readAll());
}
void SerialPortWidget::enableCommunicationSettings()
{
ui->baudRateComboBox->setEnabled(true);
ui->dataBitsComboBox->setEnabled(true);
ui->stopBitsComboBox->setEnabled(true);
ui->parityComboBox->setEnabled(true);
ui->flowControlComboBox->setEnabled(true);
}
void SerialPortWidget::disableCommunicationSettings()
{
ui->baudRateComboBox->setDisabled(true);
ui->dataBitsComboBox->setDisabled(true);
ui->stopBitsComboBox->setDisabled(true);
ui->parityComboBox->setDisabled(true);
ui->flowControlComboBox->setDisabled(true);
}
void SerialPortWidget::validateCommunicationSettings(void)
{
if (serialPort->isOpen() &&
(ui->baudRateComboBox->currentIndex() != -1) &&
(ui->dataBitsComboBox->currentIndex() != -1) &&
(ui->stopBitsComboBox->currentIndex() != -1) &&
(ui->parityComboBox->currentIndex() != -1) &&
(ui->flowControlComboBox->currentIndex() != -1)) {
ui->startCommunicationPushButton->setEnabled(true);
} else {
ui->startCommunicationPushButton->setDisabled(true);
}
}