Skip to content

Commit

Permalink
Merge pull request mavlink#109 from irsdkv/pr-mocap
Browse files Browse the repository at this point in the history
MoCap Odometry::MavFrame enum values change
  • Loading branch information
julianoes committed Oct 14, 2019
2 parents f7bbe32 + 0014e11 commit b490801
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions protos/mocap/mocap.proto
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,8 @@ message AttitudePositionMocap {
message Odometry {
// Mavlink frame id
enum MavFrame {
STUB = 0; // Stub for Protobuf
MOCAP_NED = 14; // Odometry local coordinate frame of data given by a motion capture system, Z-down (x: north, y: east, z: down).
LOCAL_FRD = 20; // Forward, Right, Down coordinate frame. This is a local frame with Z-down and arbitrary F/R alignment (i.e. not aligned with NED/earth frame). Replacement for MAV_FRAME_MOCAP_NED, MAV_FRAME_VISION_NED, MAV_FRAME_ESTIM_NED.
MOCAP_NED = 0; // MAVLink number: 14. Odometry local coordinate frame of data given by a motion capture system, Z-down (x: north, y: east, z: down).
LOCAL_FRD = 1; // MAVLink number: 20. Forward, Right, Down coordinate frame. This is a local frame with Z-down and arbitrary F/R alignment (i.e. not aligned with NED/earth frame). Replacement for MAV_FRAME_MOCAP_NED, MAV_FRAME_VISION_NED, MAV_FRAME_ESTIM_NED.
}

uint64 time_usec = 1; // Timestamp (0 to use Backend timestamp).
Expand Down

0 comments on commit b490801

Please sign in to comment.