File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change 3939
4040
4141class Command :
42- RTDE_REQUEST_PROTOCOL_VERSION = 86 # ascii V
43- RTDE_GET_URCONTROL_VERSION = 118 # ascii v
44- RTDE_TEXT_MESSAGE = 77 # ascii M
45- RTDE_DATA_PACKAGE = 85 # ascii U
46- RTDE_CONTROL_PACKAGE_SETUP_OUTPUTS = 79 # ascii O
47- RTDE_CONTROL_PACKAGE_SETUP_INPUTS = 73 # ascii I
48- RTDE_CONTROL_PACKAGE_START = 83 # ascii S
49- RTDE_CONTROL_PACKAGE_PAUSE = 80 # ascii P
42+ RTDE_REQUEST_PROTOCOL_VERSION = ord ( 'V' ) # V=86
43+ RTDE_GET_URCONTROL_VERSION = ord ( 'v' ) # v=118
44+ RTDE_TEXT_MESSAGE = ord ( 'M' ) # M=77
45+ RTDE_DATA_PACKAGE = ord ( 'U' ) # U=85
46+ RTDE_CONTROL_PACKAGE_SETUP_OUTPUTS = ord ( 'O' ) # O=79
47+ RTDE_CONTROL_PACKAGE_SETUP_INPUTS = ord ( 'I' ) # I=73
48+ RTDE_CONTROL_PACKAGE_START = ord ( 'S' ) # S=83
49+ RTDE_CONTROL_PACKAGE_PAUSE = ord ( 'P' ) # P=80
5050
5151
5252RTDE_PROTOCOL_VERSION_1 = 1
You can’t perform that action at this time.
0 commit comments