For information on the latest version, please have a look at GL013301.
ROBOT_CONTROL
This is an enumeration type constant that can convert or change the operation status of the robot controller, and is defined as follows.
Rank |
Constant Name |
Description |
|---|---|---|
0 |
CONTROL_INIT_CONFIG |
It executes the function to convert from |
1 |
CONTROL_ENABLE_OPERATION |
It executes the function to convert from |
2 |
CONTROL_RESET_SAFET_STOP |
It executes the function to convert from |
3 |
CONTROL_RESET_SAFE_STOP |
It executes the function to convert from |
4 |
CONTROL_RESET_SAFET_OFF |
It executes the function to convert from STATE_SAFE_OFF |
5 |
CONTROL_RESET_SAFE_OFF |
It executes the function to convert from STATE_SAFE_OFF |
6 |
CONTROL_SERVO_ON |
Alias of CONTROL_RESET_SAFET_OFF. |
7 |
CONTROL_RECOVERY_SAFE_STOP |
It executes the S/W-based function to convert from |
8 |
CONTROL_RECOVERY_SAFE_OFF |
It executes the S/W-based function to convert from |
9 |
CONTROL_RECOVERY_BACKDRIVE |
It executes the H/W-based function to convert from |
10 |
CONTROL_RESET_RECOVERY |
It executes the function to convert from STATE_RECOVERY |
11 |
CONTROL_LAST |
Internal end marker of the ROBOT_CONTROL enumeration. |
Defined in: DRFC.h
// robot control enumerated value
typedef enum {
CONTROL_INIT_CONFIG,
CONTROL_ENABLE_OPERATION,
CONTROL_RESET_SAFET_STOP,
CONTROL_RESET_SAFE_STOP = CONTROL_RESET_SAFET_STOP,
CONTROL_RESET_SAFET_OFF,
CONTROL_RESET_SAFE_OFF = CONTROL_RESET_SAFET_OFF,
CONTROL_SERVO_ON = CONTROL_RESET_SAFET_OFF,
CONTROL_RECOVERY_SAFE_STOP,
CONTROL_RECOVERY_SAFE_OFF,
CONTROL_RECOVERY_BACKDRIVE,
CONTROL_RESET_RECOVERY,
CONTROL_LAST
} ROBOT_CONTROL;