extend the waypoint data

This commit is contained in:
Sven Czarnian
2021-11-13 10:02:21 +01:00
parent bb4bbb5c45
commit 54ae325927

View File

@@ -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 {