You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @brief Represents the various service modes of the gripper. These modes represents the high level states of the gripper.
48
+
* @brief Represents the various service modes of the gripper. These modes represents the high level
49
+
* states of the gripper.
49
50
*
50
51
* - IDLE: The gripper is in an idle state, not performing any action.
51
52
* - OPEN: The gripper is in the process of opening.
@@ -63,7 +64,8 @@ enum class service_mode_type : std::uint8_t
63
64
* @brief Represents the various states of the gripper.
64
65
*
65
66
* - IDLE: The gripper is in an idle state, not performing any action.
66
-
* - SET_BEFORE_COMMAND: Executing commands for io defined in the yaml which are required before opening the gripper.
67
+
* - SET_BEFORE_COMMAND: Executing commands for io defined in the yaml which are required before
68
+
* opening the gripper.
67
69
* - CLOSE_GRIPPER: Executing commands to close the gripper.
68
70
* - CHECK_GRIPPER_STATE: Checking the state of the gripper to make sure the gripper is closed.
69
71
* - OPEN_GRIPPER: Executing commands to open the gripper.
@@ -83,7 +85,8 @@ enum class gripper_state_type : std::uint8_t
83
85
84
86
/**
85
87
* @enum reconfigure_state_type
86
-
* @brief Represents the various states of the reconfiguration process, which means that the gripper is reconfiguring to new state based on the configuration defined in the yaml params.
88
+
* @brief Represents the various states of the reconfiguration process, which means that the gripper
89
+
* is reconfiguring to new state based on the configuration defined in the yaml params.
87
90
*
88
91
* - IDLE: The reconfiguration process is idle, not performing any action.
89
92
* - FIND_CONFIG: Finding the configuration settings.
@@ -207,14 +210,17 @@ class IOGripperController : public controller_interface::ControllerInterface
// Realtime buffer to store the state for switching the gripper state (e.g. idle, set_before_command, close_gripper, check_gripper_state, open_gripper, set_after_command, halted)
216
+
// Realtime buffer to store the state for switching the gripper state (e.g. idle,
0 commit comments