Browse Source

add the heading to the dynamics to allow a position prediction

Sven Czarnian 3 years ago
parent
commit
d4a1eb87c7
1 changed files with 3 additions and 2 deletions
  1. 3 2
      BaseTypes.proto

+ 3 - 2
BaseTypes.proto

@@ -22,6 +22,7 @@ message Waypoint {
 
 message Dynamics {
     int32 groundSpeed   = 1; // given in knots
-    int32 altitude      = 2; // given in feet
-    int32 verticalSpeed = 3; // given in feet/min
+    int32 heading       = 2; // reported heading
+    int32 altitude      = 3; // given in feet
+    int32 verticalSpeed = 4; // given in feet/min
 }