mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
cc6c385f33
This patch implements the first step towards OSTC 3 firmware update. Its not much, just file selection, but I will build up on it from there. Implements a thread to initiate firmware updates. Currently, this is for the OSTC 3. Signed-off-by: Joseph W. Joshua <joejoshw@gmail.com> Signed-off-by: Thiago Macieira <thiago@macieira.org>
58 lines
1.2 KiB
C++
58 lines
1.2 KiB
C++
#ifndef CONFIGUREDIVECOMPUTERTHREADS_H
|
|
#define CONFIGUREDIVECOMPUTERTHREADS_H
|
|
|
|
#include <QObject>
|
|
#include <QThread>
|
|
#include <QVariant>
|
|
#include "libdivecomputer.h"
|
|
#include <QDateTime>
|
|
#include "devicedetails.h"
|
|
|
|
class ReadSettingsThread : public QThread
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
ReadSettingsThread(QObject *parent, device_data_t *data);
|
|
virtual void run();
|
|
QString result;
|
|
QString lastError;
|
|
signals:
|
|
void error(QString err);
|
|
void devicedetails(DeviceDetails *newDeviceDetails);
|
|
private:
|
|
device_data_t *m_data;
|
|
};
|
|
|
|
class WriteSettingsThread : public QThread
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
WriteSettingsThread(QObject *parent, device_data_t *data);
|
|
void setDeviceDetails(DeviceDetails *details);
|
|
virtual void run();
|
|
QString result;
|
|
QString lastError;
|
|
signals:
|
|
void error(QString err);
|
|
private:
|
|
device_data_t *m_data;
|
|
DeviceDetails *m_deviceDetails;
|
|
};
|
|
|
|
class FirmwareUpdateThread : public QThread
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
FirmwareUpdateThread(QObject *parent, device_data_t *data, QString fileName);
|
|
virtual void run();
|
|
QString lastError;
|
|
signals:
|
|
void progress(int percent);
|
|
void message(QString msg);
|
|
void error(QString err);
|
|
private:
|
|
device_data_t *m_data;
|
|
QString m_fileName;
|
|
};
|
|
|
|
#endif // CONFIGUREDIVECOMPUTERTHREADS_H
|