Skip to content

Commit

Permalink
Added KMBinary message
Browse files Browse the repository at this point in the history
  • Loading branch information
alekskl01 committed Oct 15, 2023
1 parent 8cb30cb commit d3a361f
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ find_package(nav_msgs REQUIRED)
set(msg_files
"msg/ThrusterForces.msg"
"msg/Pwm.msg"
"msg/KMBinary.msg"
)

# Generate ROS 2 message interfaces
Expand Down
41 changes: 41 additions & 0 deletions msg/KMBinary.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Epoch 1970-01-01 UTC time, ignoring leap seconds.
uint32 utc_seconds
uint32 utc_nanoseconds

# One bit per status info, 1= active, 0= inactive
uint32 status

float64 latitude
float64 longitude
float32 ellipsoid_height

# Using NED coordinate system
float32 roll
float32 pitch
float32 heading
float32 heave

float32 roll_rate
float32 pitch_rate
float32 yaw_rate

float32 north_velocity
float32 east_velocity
float32 down_velocity

float32 latitude_error
float32 longitude_error
float32 height_error
float32 roll_error
float32 pitch_error
float32 heading_error
float32 heave_error

float32 north_acceleration
float32 east_acceleration
float32 down_acceleration

uint32 delayed_heave_utc_seconds
uint32 delayed_heave_utc_nanoseconds
float32 delayed_heave

0 comments on commit d3a361f

Please sign in to comment.