OpenHantek
states.h
Go to the documentation of this file.
1 // SPDX-License-Identifier: GPL-2.0+
2 
3 #pragma once
4 
5 namespace Hantek {
6 
10 enum class RollState : int {
11  STARTSAMPLING = 0,
12  ENABLETRIGGER = 1,
13  FORCETRIGGER = 2,
14  GETDATA = 3,
15 
16  _COUNT // Used for mod operator
17 };
18 
29 };
30 
31 }
Definition: states.h:28
RollState
The states of the roll cycle (Since capture state isn't valid).
Definition: states.h:10
Sampling data is available (DSO-5200/DSO-5200A)
Definition: states.h:27
Definition: controlsettings.h:9
CaptureState
The different capture states which the oscilloscope returns.
Definition: states.h:22
Sampling data is available (DSO-2090/DSO-2150)
Definition: states.h:25
Sampling data is available (DSO-2250)
Definition: states.h:26
The scope is waiting for a trigger event.
Definition: states.h:23
The scope is sampling data after triggering.
Definition: states.h:24
Request sample data.