OpenHantek
controlcode.h
1 #pragma once
2 
3 #include <inttypes.h>
4 
5 namespace Hantek {
6 
8 
128 enum class ControlCode : uint8_t {
129  CONTROL_VALUE = 0xa2,
130  CONTROL_GETSPEED = 0xb2,
131  CONTROL_BEGINCOMMAND = 0xb3,
132  CONTROL_SETOFFSET = 0xb4,
133  CONTROL_SETRELAYS = 0xb5,
134  CONTROL_SETVOLTDIV_CH1 = 0xe0,
135  CONTROL_SETVOLTDIV_CH2 = 0xe1,
136  CONTROL_SETTIMEDIV = 0xe2,
137  CONTROL_ACQUIIRE_HARD_DATA = 0xe3
138 };
139 
140 }
Definition: controlsettings.h:8