Pass hwinf into constructor. Add pointer to download thread.

This commit is contained in:
Gerhard Hoffmann 2023-12-02 09:42:50 +01:00
parent ee26eef50f
commit cf621c02bd

View File

@ -133,8 +133,8 @@
#define SENDCOMBINED 0
class hwinf;
class DownloadThread;
class T_datif : public QObject
{
Q_OBJECT
@ -165,13 +165,15 @@ class T_datif : public QObject
T_prot *myDCIF;
QTimer *datif_trigger;
uint8_t selectedSlaveAddr;
DownloadThread *m_downloadThread;
hwinf *m_hw;
private slots:
char datif_cycleSend();
void StoredRecData();
public:
T_datif(QObject *parent = nullptr);
T_datif(hwinf *hw, QObject *parent = nullptr);
void resetChain(void);
char isPortOpen(void);