OpenHantek
Loading...
Searching...
No Matches
modelDSO5200.h
1#pragma once
2
3#include "dsomodel.h"
4
6using namespace Hantek;
7
8struct ModelDSO5200 : public DSOModel {
9 static const int ID = 0x5200;
11 void applyRequirements(HantekDsoControl* dsoControl) const override;
12};
13
14struct ModelDSO5200A : public DSOModel {
15 static const int ID = 0x5200;
17 void applyRequirements(HantekDsoControl* dsoControl) const override;
18};
Describes a device This is the central class to describe a hantek compatible DSO. It contains all usb...
Definition dsomodel.h:17
The DsoControl abstraction layer for Hantek USB DSOs. TODO Please anyone, refactor this class into sm...
Definition hantekdsocontrol.h:30
Definition modelDSO5200.h:14
void applyRequirements(HantekDsoControl *dsoControl) const override
This model may need to modify the HantekDsoControl class to work correctly.
Definition modelDSO5200.cpp:66
Definition modelDSO5200.h:8
void applyRequirements(HantekDsoControl *dsoControl) const override
This model may need to modify the HantekDsoControl class to work correctly.
Definition modelDSO5200.cpp:57