Skip to content

Commit

Permalink
feat: add los-guidance action
Browse files Browse the repository at this point in the history
  • Loading branch information
Hako2807 committed Feb 16, 2025
2 parents 0c876de + 10be56f commit 7bd21f6
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 8 deletions.
6 changes: 2 additions & 4 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ set(msg_files
"msg/HybridpathReference.msg"
"msg/LOSGuidance.msg"
"msg/ReferenceFilter.msg"
"msg/DVLDepth.msg"
"msg/DVLAltitude.msg"
"msg/Waypoints.msg"
)

Expand All @@ -39,11 +39,9 @@ set(action_files
"action/LocateDock.action"
"action/NavigateWaypoints.action"
"action/ReferenceFilterWaypoint.action"
<<<<<<< Updated upstream
"action/VtfGuidance.action"
=======
"action/LOSGuidance.action"
"action/FilteredPose.action"
>>>>>>> Stashed changes
)

# Generate ROS 2 message interfaces
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ find_package(vortex_msgs REQUIRED)
```
If your package includes C++ code which depend on vortex_msgs you also need to add the following to the `CMakeLists.txt`
```cmake
ament_taget_dependencies(<your_executable>
ament_target_dependencies(<your_executable>
... # other dependencies
vortex_msgs
)
Expand Down
10 changes: 10 additions & 0 deletions action/LOSGuidance.action
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Goal
geometry_msgs/PointStamped goal

---
# Result
bool success

---
# Feedback
vortex_msgs/LOSGuidance feedback
2 changes: 1 addition & 1 deletion action/VtfGuidance.action
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ vortex_msgs/Waypoints goal
bool success
---
# Feedback
vortex_msgs/ReferenceFilter feedback
vortex_msgs/ReferenceFilter feedback
2 changes: 1 addition & 1 deletion msg/DVLDepth.msg → msg/DVLAltitude.msg
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
std_msgs/Header header
float64 depth
float64 altitude
2 changes: 1 addition & 1 deletion msg/Waypoints.msg
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Array of points

geometry_msgs/Point[] waypoints
geometry_msgs/Point[] waypoints

0 comments on commit 7bd21f6

Please sign in to comment.