|
| enum | ChannelMode { ChannelMode::Voltage,
ChannelMode::Spectrum
} |
| | The channel display modes. More...
|
| |
| enum | GraphFormat { TY,
XY
} |
| | The possible viewing formats for the graphs on the scope. More...
|
| |
| enum | Coupling { Coupling::DC,
Coupling::AC,
Coupling::GND
} |
| | The coupling modes for the channels. More...
|
| |
| enum | TriggerMode { TriggerMode::ROLL,
TriggerMode::AUTO,
TriggerMode::NORMAL,
TriggerMode::SINGLE
} |
| | The different triggering modes. More...
|
| |
| enum | Slope : uint8_t { Slope::Positive = 0,
Slope::Negative = 1,
Slope::Both = 2
} |
| | The slope that causes a trigger. More...
|
| |
| enum | InterpolationMode {
INTERPOLATION_OFF = 0,
INTERPOLATION_LINEAR,
INTERPOLATION_STEP,
INTERPOLATION_SINC,
INTERPOLATION_COUNT
} |
| | The different interpolation modes for the graphs. More...
|
| |
| enum | Themes { THEME_AUTO = 0,
THEME_LIGHT,
THEME_DARK
} |
| | The different themes for display. More...
|
| |
| enum | ErrorCode { ErrorCode::NONE = 0,
ErrorCode::CONNECTION = -1,
ErrorCode::UNSUPPORTED = -2,
ErrorCode::PARAMETER = -3
} |
| | The return codes for device control methods. More...
|
| |
| enum | MathMode : unsigned {
MathMode::ADD_CH1_CH2,
MathMode::SUB_CH2_FROM_CH1,
MathMode::SUB_CH1_FROM_CH2,
MathMode::MUL_CH1_CH2,
MathMode::AC_CH1,
MathMode::AC_CH2
} |
| | The different math modes for the math-channel. More...
|
| |
| enum | WindowFunction : int {
WindowFunction::RECTANGULAR,
WindowFunction::HAMMING,
WindowFunction::HANN,
WindowFunction::COSINE,
WindowFunction::LANCZOS,
WindowFunction::BARTLETT,
WindowFunction::TRIANGULAR,
WindowFunction::GAUSS,
WindowFunction::BARTLETTHANN,
WindowFunction::BLACKMAN,
WindowFunction::NUTTALL,
WindowFunction::BLACKMANHARRIS,
WindowFunction::BLACKMANNUTTALL,
WindowFunction::FLATTOP
} |
| | The supported window functions. These are needed for spectrum analysis and are applied to the sample values before calculating the DFT. More...
|
| |