DCLibraries/src/download_thread.cpp

22 lines
572 B
C++

#include "download_thread.h"
#include "shared_mem_buffer.h"
#include "hwapi.h"
DownloadThread::DownloadThread(hwinf *hw)
: m_hw(hw)
, m_fileToDownload(m_hw->dcDownloadFileName()) {
}
DownloadThread::~DownloadThread() {
}
// download thread running in ca-master sends the dc-file down to firmware
void DownloadThread::run() {
// m_hw->dcDownloadInit(m_fileToDownload);
// hier dann den eigentlichen download-process eintragen
// m_hw->dcDownloadGetCurrentBlockNumber(currentBlockNumber);
// m_hw->dcDownloadGetTotalBlockNumber(totalBlockNumber);
}