-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloadviewer.cpp
More file actions
366 lines (330 loc) · 12.2 KB
/
Copy pathloadviewer.cpp
File metadata and controls
366 lines (330 loc) · 12.2 KB
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
359
360
361
362
363
364
365
366
#include "loadviewer.h"
#include "mycrc.h"
#include <QFileDialog>
#include <QMessageBox>
//#include <QDebug>
#include <QDialog>
#include <QIntValidator>
/**
* @brief LoadViewer::LoadViewer constructor
* @param parent
*/
LoadViewer::LoadViewer(QObject *parent) : QObject(parent)
{
isLoadingComplete = true;
loadGroupBox = new QGroupBox();
QPushButton* fopenButton = new QPushButton(tr("File:"));
fopenButton->setAutoDefault(true);
QLineEdit* fpathLineEdit = new QLineEdit();
fpathLineEdit->setObjectName("fpathLineEdit");
QLabel* uniqIdLabel = new QLabel(tr("Device serial number:"));
serialLineEdit = new QLineEdit;
QIntValidator* validator = new QIntValidator(0, 16777215);
serialLineEdit->setValidator(validator);
incCheckBox = new QCheckBox(tr("Auto‑increment"));
QPushButton* checkMemButton = new QPushButton(tr("Check memory"));
checkMemButton->setAutoDefault(true);
QPushButton* loadStartButton = new QPushButton(tr("Download firmware"));
loadStartButton->setAutoDefault(true);
QPushButton* appStartButton = new QPushButton(tr("Device start"));
appStartButton->setAutoDefault(true);
loadGroupBox->setTitle(tr("Working with devices in bootloader mode"));
loadGroupBox->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
QHBoxLayout* hLayout1 = new QHBoxLayout;
hLayout1->addWidget(fopenButton);
hLayout1->addWidget(fpathLineEdit);
QHBoxLayout* hLayout2 = new QHBoxLayout;
hLayout2->addWidget(uniqIdLabel);
hLayout2->addWidget(serialLineEdit, 0, Qt::AlignLeft);
hLayout2->addStretch();
QHBoxLayout* hLayout3 = new QHBoxLayout;
hLayout3->addWidget(checkMemButton);
hLayout3->addStretch();
hLayout3->addWidget(loadStartButton);
hLayout3->addStretch();
hLayout3->addWidget(appStartButton);
QVBoxLayout* loaderLayout = new QVBoxLayout();
loaderLayout->addStretch();
loaderLayout->addLayout(hLayout2);
loaderLayout->addWidget(incCheckBox);
loaderLayout->addStretch();
loaderLayout->addLayout(hLayout1);
loaderLayout->addLayout(hLayout3);
loadGroupBox->setLayout(loaderLayout);
connect(fopenButton, SIGNAL(clicked()), this, SLOT(onFopenButton_clicked()));
connect(checkMemButton, SIGNAL(clicked()), this, SLOT(onCheckMemButton_clicked()));
connect(loadStartButton, SIGNAL(clicked()), this, SLOT(onloadStartButton_clicked()));
connect(appStartButton, SIGNAL(clicked()), this, SLOT(onAppStartButton_clicked()));
}
/**
* @brief LoadViewer::~LoadViewer destructor
*/
LoadViewer::~LoadViewer()
{
delete loadGroupBox;
//qDebug()<<"~By-by from"<<this;
}
/**
* @brief LoadViewer::onChangeTabIndex. Sets information about current tab index.
* @param index - current tab index
void LoadViewer::onChangeTabIndex(int index)
{
currentTabIndex = index;
} */
/**
* @brief LoadViewer::createLoadStateWindow
*/
void LoadViewer::createLoadStateWindow()
{
loadStateWindow = new QDialog(loadGroupBox);
QVBoxLayout* vLayout = new QVBoxLayout();
QHBoxLayout* hLayout = new QHBoxLayout();
QLabel* eraseLabel = new QLabel(tr("Erase:"));
eraseLabel->setObjectName("eraseLabel");
QLabel* writeLabel = new QLabel(tr("Write:"));
writeLabel->setObjectName("writeLabel");
QLabel* resultLabel = new QLabel(tr("Result:"));
resultLabel->setObjectName("resultLabel");
QProgressBar* eraseBar = new QProgressBar();
eraseBar->setObjectName("eraseBar");
//eraseBar->setFixedHeight(16);
writeBar = new QProgressBar();
//writeBar->setFixedHeight(16);
QPushButton* closeButton = new QPushButton(tr("Close"));
closeButton->setEnabled(false);
closeButton->setObjectName("closeButton");
loadStateWindow->setWindowTitle(tr("Firmware loading"));
loadStateWindow->resize(550, 156);
loadStateWindow->setModal(true);
loadStateWindow->setWindowFlags(Qt::Tool);
closeButton->setFixedWidth(80);
vLayout->addWidget(eraseLabel);
vLayout->addWidget(eraseBar);
vLayout->addWidget(writeLabel);
vLayout->addWidget(writeBar);
vLayout->addWidget(resultLabel);
hLayout->addWidget(closeButton);
vLayout->addLayout(hLayout);
loadStateWindow->setLayout(vLayout);
/* Show the window */
loadStateWindow->show();
connect(closeButton, SIGNAL(clicked()), this, SLOT(onLoadWinCloseButton_clicked()));
connect(loadStateWindow, SIGNAL(finished(int)), this, SLOT(onDialogFinished(int)));
}
/**
* @brief LoadViewer::onFopenButton_clicked slot implemettaion.
*/
void LoadViewer::onFopenButton_clicked()
{
fileName = QFileDialog::getOpenFileName(nullptr, tr("Open File"),
tr(""), tr("Binary (*.bin)"));
if( !fileName.isNull() ) {
QLineEdit* fpathLineEdit =
this->loadGroupBox->findChild<QLineEdit*>("fpathLineEdit");
if( fpathLineEdit != nullptr ){
fpathLineEdit->setText(fileName);
}
}
}
/**
* @brief LoadViewer::onloadStartButton_clicked slot implemettaion.
*/
void LoadViewer::onloadStartButton_clicked()
{
QFile fwFile;
quint32 serial;
QByteArray serialNum;
if( serialLineEdit->text() != "" ){
serial = serialLineEdit->text().toUInt();
}
else{
QMessageBox::warning(loadGroupBox, tr("Error"), tr("The serial number is not set"));
return;
}
serialNum.append(static_cast<char>((serial>>16) & 0xFF));
serialNum.append(static_cast<char>((serial>>8) & 0xFF));
serialNum.append(static_cast<char>(serial & 0xFF));
if( !fileName.isNull() ){
fwFile.setFileName(fileName);
emit sendCommand(SET_UNIQUE_ID, serialNum);
}
else{
QMessageBox::warning(loadGroupBox, tr("Error"), tr("The file is not selected"));
return;
}
if( !fwFile.open(QIODevice::ReadOnly) ) {
QMessageBox::warning(loadGroupBox, tr("Error"), tr("The file could not be opened"));
}
else{
fwBuffer.clear();
if( !fwFile.seek(0) ) {
; // error!!!
}
fwBuffer = fwFile.readAll();
while( fwBuffer.size() % 4 ){
fwBuffer.append(static_cast<char>(0xFF));
}
fwFile.close();
quint32 *buff = reinterpret_cast<quint32*>(fwBuffer.data());
fwHashSum = calcBufCRC32(buff, fwBuffer.size() / 4);
isLoadingComplete = false;
if( incCheckBox->isChecked() ){
serial++;
serialLineEdit->setText(QString::number(serial));
}
}
}
/**
* @brief LoadViewer::onEraseComplete slot implemettaion.
*/
void LoadViewer::onEraseComplete()
{
QProgressBar* eraseBar =
this->loadStateWindow->findChild<QProgressBar*>("eraseBar");
QLabel* eraseLabel =
this->loadStateWindow->findChild<QLabel*>("eraseLabel");
/* Fill the erase progress bar */
eraseBar->setValue(100);
eraseLabel->setText(eraseLabel->text() + " " + tr("completed."));
emit sendCommand(WRITE_FLASH_FIRST, fwBuffer);
}
/**
* @brief LoadViewer::onDialogFinished. Closes and deletes load progress window.
* @param code - not used
*/
void LoadViewer::onDialogFinished(int code)
{
Q_UNUSED(code);
if( isLoadingComplete != true )
{
QMessageBox msgBox;
msgBox.setWindowTitle(tr("Confirmation"));
msgBox.setText(tr("Do you want to interrupt the download?"));
QPushButton *yesButton = msgBox.addButton(tr("Yes"), QMessageBox::AcceptRole);
msgBox.addButton(tr("No"), QMessageBox::AcceptRole);
msgBox.buttons().at(1)->setFocus();
msgBox.exec();
if (msgBox.clickedButton() != yesButton) {
loadStateWindow->show();
}
else {
quint32 serial = serialLineEdit->text().toUInt();
serialLineEdit->setText(QString::number(serial-1));
onLoadWinCloseButton_clicked();
emit sendCommand(STOP_CMD, nullptr);
emit sendCommand(CHECK_MEMORY, nullptr);
if( loadStateWindow ) {
delete loadStateWindow;
}
}
}
}
/**
* @brief LoadViewer::onTransactionComplete. Handles responses from the device.
* @param response - response command code
* @param prm2 - extra parameter
*/
void LoadViewer::onTransactionComplete(quint8 response, const QVariant &prm2)
{
QString cnf_str, clb_str, app_str;
QPushButton* closeButton =
this->loadStateWindow->findChild<QPushButton*>("closeButton");
QLabel* resultLabel =
this->loadStateWindow->findChild<QLabel*>("resultLabel");
switch(response)
{
case SET_UNIQUE_ID:
serialNumber = static_cast<quint32>(prm2.toInt());
createLoadStateWindow();
writeBar->setMinimum(0);
writeBar->setMaximum(fwBuffer.size());
emit sendCommand(ERASE_APP_FLASH, nullptr);
break;
case WRITE_FLASH_FIRST:
case WRITE_FLASH_NEXT:
writeBar->setValue(writeBar->value()+DATA_CHUNCK_SIZE);
if( loadStateWindow ) {
emit sendCommand(WRITE_FLASH_NEXT, nullptr);
}
break;
case CHECK_HASH_SUM:
if( closeButton != nullptr ) {
closeButton->setEnabled(true);
}
if( fwHashSum == static_cast<quint32>(prm2.toInt()) ){
if( resultLabel!= nullptr ) {
resultLabel->setText(resultLabel->text() + " " + "Loading completed. Verification passed."
+ " " + "A serial number has been assigned:" + " " + QString::number(serialNumber));
}
}
else{
QMessageBox::critical(loadGroupBox, tr("Error"), tr("Verification error! Re‑write required."));
if( resultLabel != nullptr ) {
resultLabel->setText(resultLabel->text() + " " + tr("Verification error! Re‑write required."));
}
}
break;
case CHECK_MEMORY:
if( static_cast<quint8>(prm2.toInt()) & 0x01 )
cnf_str = tr("YES");
else
cnf_str = tr("NO");
if( static_cast<quint8>(prm2.toInt()) & 0x02 )
clb_str = tr("YES");
else
clb_str = tr("NO");
if( static_cast<quint8>(prm2.toInt()) & 0x04 )
app_str = tr("YES");
else
app_str = tr("NO");
QMessageBox::information(loadGroupBox, tr("Memory check"),
tr("Data in the device’s memory:") +
"\n" +
"\n" +
tr("Firmware:") + " " + app_str + "\n" +
tr("Calibration:") + " " + clb_str + "\n" +
tr("Configuration:") + " " + cnf_str + "\n");
break;
default:
break;
}
}
/**
* @brief LoadViewer::onLoadingComplete. Handles loading complete event.
*/
void LoadViewer::onLoadingComplete()
{
QLabel* writeLabel =
this->loadStateWindow->findChild<QLabel*>("writeLabel");
writeBar->setValue(fwBuffer.size());
fwBuffer.clear();
if( writeLabel != nullptr ) {
writeLabel->setText(writeLabel->text() + " " + tr("done."));
}
isLoadingComplete = true;
emit sendCommand(CHECK_HASH_SUM, nullptr);
}
/**
* @brief LoadViewer::onLoadWinCloseButton_clicked slot implementation.
*/
void LoadViewer::onLoadWinCloseButton_clicked()
{
if( loadStateWindow ) {
delete loadStateWindow;
}
}
/**
* @brief LoadViewer::onCheckMemButton_clicked slot implementation.
*/
void LoadViewer::onCheckMemButton_clicked()
{
emit sendCommand(CHECK_MEMORY, nullptr);
}
/**
* @brief LoadViewer::onAppStartButton_clicked slot implementation.
*/
void LoadViewer::onAppStartButton_clicked()
{
emit sendCommand(START_APPLICATION, nullptr);
}
//eof