2010-11-01 18:15:48 +00:00
|
|
|
/**
|
|
|
|
******************************************************************************
|
|
|
|
*
|
|
|
|
* @file devicewidget.h
|
|
|
|
* @author The OpenPilot Team, http://www.openpilot.org Copyright (C) 2010.
|
|
|
|
* @addtogroup GCSPlugins GCS Plugins
|
|
|
|
* @{
|
|
|
|
* @addtogroup YModemUploader YModem Serial Uploader Plugin
|
|
|
|
* @{
|
|
|
|
* @brief The YModem protocol serial uploader plugin
|
|
|
|
*****************************************************************************/
|
|
|
|
/*
|
|
|
|
* This program 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
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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 this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DEVICEWIDGET_H
|
|
|
|
#define DEVICEWIDGET_H
|
|
|
|
|
|
|
|
#include "ui_devicewidget.h"
|
2010-12-28 21:27:21 +00:00
|
|
|
#include "uploadergadgetwidget.h"
|
2010-11-01 20:50:59 +00:00
|
|
|
#include "op_dfu.h"
|
2010-11-01 18:15:48 +00:00
|
|
|
#include <QWidget>
|
2010-11-03 21:41:32 +00:00
|
|
|
#include <QFileDialog>
|
2011-05-08 00:57:59 +02:00
|
|
|
#include <QErrorMessage>
|
|
|
|
#include <QByteArray>
|
2010-11-26 22:49:50 +00:00
|
|
|
#include <QtSvg/QGraphicsSvgItem>
|
|
|
|
#include <QtSvg/QSvgRenderer>
|
2011-05-08 21:22:00 +02:00
|
|
|
#include <QCryptographicHash>
|
2011-06-19 00:50:38 +01:00
|
|
|
#include "uavobjectutilmanager.h"
|
|
|
|
#include "devicedescriptorstruct.h"
|
2012-04-21 22:03:43 -04:00
|
|
|
#include <QDir>
|
|
|
|
#include <QCoreApplication>
|
2012-10-06 01:40:25 +01:00
|
|
|
#include "uploader_global.h"
|
|
|
|
|
2010-11-06 14:17:21 +00:00
|
|
|
using namespace OP_DFU;
|
2013-05-19 17:37:30 +03:00
|
|
|
class UPLOADER_EXPORT DeviceWidget : public QWidget {
|
2010-11-01 18:15:48 +00:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2013-04-14 13:24:07 +02:00
|
|
|
DeviceWidget(QWidget *parent = 0);
|
2010-11-01 20:50:59 +00:00
|
|
|
void setDeviceID(int devID);
|
2013-05-19 17:37:30 +03:00
|
|
|
void setDfu(DFUObject *dfu);
|
2010-11-01 20:50:59 +00:00
|
|
|
void populate();
|
2010-11-03 21:41:32 +00:00
|
|
|
void freeze();
|
2013-05-19 17:37:30 +03:00
|
|
|
typedef enum { STATUSICON_OK, STATUSICON_RUNNING, STATUSICON_FAIL, STATUSICON_INFO } StatusIcon;
|
2010-11-03 21:41:32 +00:00
|
|
|
QString setOpenFileName();
|
2011-04-29 21:50:58 +01:00
|
|
|
QString setSaveFileName();
|
2013-03-06 22:01:05 +01:00
|
|
|
|
2010-11-01 18:15:48 +00:00
|
|
|
private:
|
2012-01-15 15:36:52 +02:00
|
|
|
deviceDescriptorStruct onBoardDescription;
|
|
|
|
deviceDescriptorStruct LoadedDescription;
|
2011-06-19 00:50:38 +01:00
|
|
|
QByteArray loadedFW;
|
2010-11-01 18:15:48 +00:00
|
|
|
Ui_deviceWidget *myDevice;
|
2010-11-01 20:50:59 +00:00
|
|
|
int deviceID;
|
2010-11-06 14:17:21 +00:00
|
|
|
DFUObject *m_dfu;
|
|
|
|
QByteArray downloadedFirmware;
|
|
|
|
QString filename;
|
2012-07-16 13:20:11 +01:00
|
|
|
QPixmap devicePic;
|
2011-05-08 11:36:55 +02:00
|
|
|
QByteArray descriptionArray;
|
2010-12-28 21:27:21 +00:00
|
|
|
void status(QString str, StatusIcon ic);
|
2011-06-19 00:50:38 +01:00
|
|
|
bool populateBoardStructuredDescription(QByteArray arr);
|
|
|
|
bool populateLoadedStructuredDescription(QByteArray arr);
|
2013-02-21 01:34:17 +01:00
|
|
|
void updateButtons(bool enabled);
|
2014-02-15 14:34:05 +01:00
|
|
|
QString getDevFirmwarePath();
|
2010-11-01 18:15:48 +00:00
|
|
|
|
|
|
|
signals:
|
2012-05-07 15:11:51 +01:00
|
|
|
void uploadStarted();
|
|
|
|
void uploadEnded(bool success);
|
2013-02-21 01:34:17 +01:00
|
|
|
void downloadStarted();
|
|
|
|
void downloadEnded(bool success);
|
2013-03-06 22:01:05 +01:00
|
|
|
|
2010-11-01 18:15:48 +00:00
|
|
|
public slots:
|
2010-11-03 18:46:17 +00:00
|
|
|
void uploadFirmware();
|
2011-06-19 00:50:38 +01:00
|
|
|
void loadFirmware();
|
2014-02-15 14:34:05 +01:00
|
|
|
void loadFirmware(QString fwfilename);
|
2010-11-03 18:46:17 +00:00
|
|
|
void downloadFirmware();
|
2010-11-03 21:41:32 +00:00
|
|
|
void setProgress(int);
|
2010-11-06 14:17:21 +00:00
|
|
|
void downloadFinished();
|
|
|
|
void uploadFinished(OP_DFU::Status);
|
2010-12-28 21:27:21 +00:00
|
|
|
void dfuStatus(QString);
|
2011-06-19 00:50:38 +01:00
|
|
|
void confirmCB(int);
|
2010-11-01 18:15:48 +00:00
|
|
|
|
2010-11-26 22:49:50 +00:00
|
|
|
protected:
|
|
|
|
void showEvent(QShowEvent *event);
|
|
|
|
void resizeEvent(QResizeEvent *event);
|
2010-11-01 18:15:48 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // DEVICEWIDGET_H
|