I seem to be having difficulty using the
PortListener class. If I write to a connected port directly everything is fine.
If I write via a public or private function using identical code I get an error:
“Application.exe has encountered a problem
and needs to close.”
It seems a bizarre problem so I must be
missing something really simple. My apologies in advance if this is the case. I
have cut the code down to a minimal case that still generates the problem.
|
Source code
|
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
|
MainWindow::MainWindow(QWidget *parent):
QMainWindow(parent){
QWidget *w = new QWidget(this);
scPtr
= new Session ();
QString portName
= scPtr->enumerate();
if (portName
== "NULL"){
qDebug()
<< "Serial Device NOT FOUND portName = " <<
portName;
int i = QMessageBox::warning(this,tr("Connection"),tr("No
SerialDevices detected."),QMessageBox::Cancel);
}else{
qDebug() << "SerialDevice Found. portName = " <<
portName; }
PortListener
*listener = new PortListener(portName);
//============ below
does not work?===============
clickTEST0();
//============ below
works======================
QByteArray ba;
ba.resize(3);
ba[0]
= 254
;
ba[1]
= 1;
ba[2]
= 255;
int i =
listener->port->write(ba,ba.length());
}
void MainWindow::clickTEST0()
{
QByteArray ba;
ba.resize(3);
ba[0]
= 254
;
ba[1]
= 1;
ba[2]
= 255;
int i =
listener->port->write(ba,ba.length());
}
Session::Session(){}
QString Session::enumerate(){
QList<QextPortInfo>
ports = QextSerialEnumerator::getPorts();
int tempport
= 9999;
QString tempportname
= "NULL";
QString tempfriendname
= "NULL";
QString qstr;
int portsize
= 0;
for (int i = 0;
i < ports.size(); i++) {
portsize++;
qstr
= ports.at(i).enumName;
if (qstr
== SerialDeviceString) {
tempport
= i;
tempportname
= ports.at(i).portName;
tempfriendname
= ports.at(i).friendName;
}
else {}
}
QString portName
= tempportname; // update this
to use your port of choice
if (portName
== "NULL"){ qDebug() << "SerialDevice NOT FOUND portName =
" << portName;
}else{
qDebug() << " SerialDevice FOUND portName = " <<
portName; }
return portName;
}
PortListener::PortListener(const QString &
portName) { //, int iVal){ //portName =
this->enumerate();
if (portName=="NULL"){
//NOT CONNECTED
}else{
SetPort(portName); }
}
void PortListener::SetPort(const QString &
portName){
this->port
= new QextSerialPort(portName, QextSerialPort::EventDriven);
port->setBaudRate(BAUD115200);
port->setFlowControl(FLOW_OFF);
port->setParity(PAR_NONE);
port->setDataBits(DATA_8);
port->setStopBits(STOP_1);
if (port->open(QIODevice::ReadWrite)
== true) {
connect(port,
SIGNAL(readyRead()), this, SLOT(onReadyRead()));
connect(port,
SIGNAL(dsrChanged(bool)), this, SLOT(onDsrChanged(bool)));
if (!(port->lineStatus()
& LS_DSR))
qDebug()
<< "warning: device is not turned on";
qDebug()
<< "listening for data on"
<< port->portName();
}
else {qDebug()
<< "device failed to open:"
<< port->errorString();
}
emit
onReadyWrite("Listener Created!");
}
|