Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,13 @@ set(msg_files
"msg/ParameterArray.msg"
"msg/HybridpathReference.msg"
"msg/LOSGuidance.msg"
"msg/GripperReferenceFilter.msg"
"msg/GripperState.msg"
"msg/ReferenceFilter.msg"
"msg/ReferenceFilterQuat.msg"
"msg/RPY.msg"
"msg/DVLAltitude.msg"
"msg/GripperWaypoint.msg"
"msg/WaypointMode.msg"
"msg/Waypoint.msg"
"msg/Waypoints.msg"
Expand Down Expand Up @@ -67,6 +70,7 @@ set(action_files
"action/GoToWaypoint.action"
"action/LocateDock.action"
"action/NavigateWaypoints.action"
"action/GripperReferenceFilterWaypoint.action"
"action/VtfGuidance.action"
"action/GuidanceWaypoint.action"
"action/FilteredPose.action"
Expand Down
9 changes: 9 additions & 0 deletions action/GripperReferenceFilterWaypoint.action
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Goal
vortex_msgs/GripperWaypoint waypoint
float64 convergence_threshold
---
# Result
bool success
---
# Feedback
vortex_msgs/GripperReferenceFilter reference
11 changes: 11 additions & 0 deletions msg/GripperReferenceFilter.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# nu_d
float64 roll
float64 pinch

# nu_d_dot
float64 roll_dot
float64 pinch_dot

# nu_d_dotdot
float64 roll_dotdot
float64 pinch_dotdot
7 changes: 7 additions & 0 deletions msg/GripperState.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
std_msgs/Header header

#x: gripper states

float64 roll
float64 pinch

10 changes: 10 additions & 0 deletions msg/GripperWaypoint.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
GripperReferenceFilter roll
GripperReferenceFilter pinch

uint8 mode

# GripperWaypoint mode constraints
uint8 ROLL_AND_PINCH = 0
uint8 ONLY_ROLL = 1
uint8 ONLY_PINCH = 2