OpenHantek
Loading...
Searching...
No Matches
uploadFirmware.h
1// SPDX-License-Identifier: GPL-2.0+
2
3#pragma once
4
5#include <QString>
6
7class USBDevice;
8
14 public:
15 bool startUpload(USBDevice *device);
16 const QString &getErrorMessage() const;
17 private:
18 QString errorMessage;
19};
This class handles the USB communication with an usb device that has one in and one out endpoint.
Definition usbdevice.h:24
Definition uploadFirmware.h:13