-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added altitude to telemetry plugin #300
Added altitude to telemetry plugin #300
Conversation
protos/telemetry/telemetry.proto
Outdated
message SubscribeAltitudeRequest{} | ||
message AltitudeResponse{ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
message SubscribeAltitudeRequest{} | |
message AltitudeResponse{ | |
message SubscribeAltitudeRequest {} | |
message AltitudeResponse { |
protos/telemetry/telemetry.proto
Outdated
@@ -803,6 +821,16 @@ message GpsGlobalOrigin { | |||
float altitude_m = 3 [(mavsdk.options.default_value)="NaN"]; // Altitude AMSL (above mean sea level) in metres | |||
} | |||
|
|||
// Altitude message type | |||
// For more info see: https://mavlink.io/en/messages/common.html#ALTITUDE |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We try not to leak MAVLink (too much) in the MAVSDK interface 😇.
// For more info see: https://mavlink.io/en/messages/common.html#ALTITUDE |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Whoops I meant "Request changes" for the two small comments I had 😇
Removed mavlink message ref link
Done the requested changes. Also updated proto module in MAVSDK. 😃 |
This pull request would close #1903.