Sven Czarnian пре 3 година
родитељ
комит
54ae325927
1 измењених фајлова са 5 додато и 2 уклоњено
  1. 5 2
      BaseTypes.proto

+ 5 - 2
BaseTypes.proto

@@ -13,8 +13,11 @@ message WindData {
 }
 
 message Waypoint {
-    string name = 1; // The waypoint's name
-    string pta  = 2; // The planned time of arrival (YYYY-MM-DD HH:MM:SS)
+    string name             = 1; // The waypoint's name
+    string pta              = 2; // The planned time of arrival (YYYY-MM-DD HH:MM:SS)
+    int32 altitude          = 3; // The target altitude
+    int32 indicatedAirspeed = 4; // The target indicated airspeed
+    int32 groundSpeed       = 5; // The target ground speed
 }
 
 message Dynamics {