Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5e1a121

Browse files
author
Ahmed Ebrahim
committedApr 24, 2024·
feat(remaining_dist_eta): add msg definition for mission remaining distance and time
Signed-off-by: AhmedEbrahim <ahmed.a.d.ebrahim@gmail.com> feat(remaining_dist_eta): add msg definition for mission remaining distance and time"
1 parent a701d19 commit 5e1a121

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed
 

‎CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ find_package(ament_cmake_auto REQUIRED)
55
ament_auto_find_build_dependencies()
66

77
set(msg_files
8-
"msg/PublishedTime.msg")
8+
"msg/PublishedTime.msg"
9+
"msg/MissionRemainingDistanceTime.msg")
910

1011
set(msg_dependencies
1112
builtin_interfaces

‎msg/MissionRemainingDistanceTime.msg

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Information about the mission remaining distance and time.
2+
3+
float64 remaining_distance # Remaining distance in meters
4+
float64 remaining_time # Remaining total time in seconds
5+
uint32 remaining_hours # Remaining hours
6+
uint32 remaining_minutes # Remaining minutes
7+
uint32 remaining_seconds # Remaining seconds

0 commit comments

Comments
 (0)
Please sign in to comment.