-
-
Notifications
You must be signed in to change notification settings - Fork 511
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
Add AttitudeAngularVelocityBody
, AttitudeAngularVelocityBody
and ActuatorOutputStatus
to telemetry
#832
Conversation
Thanks! I'll review it but it might not happen before Monday. |
void checkSendsActuatorOutputStatusEvents( | ||
const std::vector<ActuatorOutputStatus>& actuator_output_status_events) const; | ||
ActuatorOutputStatus | ||
createActuatorOutputStatus(const uint8_t group, const float* controls) const; |
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.
Does it have to be pointer? What about e.g. a const vector&
?
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.
Agree. Will do this
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.
Changed createActuatorControlTarget in the same way.
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.
Nice, looks good.
Let's now update the |
Added: 1. AttitudeAngularSpeed: current angular speed from ATTITUDE_QUATERNION message. See https://mavlink.io/en/messages/common.html#ATTITUDE_QUATERNION 2. ActuatorControlTarget: current vehicle attitude and body angular rates. See https://mavlink.io/en/messages/common.html#SET_ACTUATOR_CONTROL_TARGET 3. ActuatorOutputStatus: current raw values of the actuator outputs. See https://mavlink.io/en/messages/common.html#ACTUATOR_OUTPUT_STATUS
45c5134
to
02cddce
Compare
1. Updated proto submodule rev, 2. Updated generated grpc modules, 3. Fixed 'proto_dir' in 'generate_from_protos.sh' tool.
02cddce
to
ce857a1
Compare
🤔 |
Im also think about that. But at this moment I suppose that this is ok, because of |
Also |
Sounds good. |
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.
Looks good, thanks.
|
And:
|
807b9f3
to
6041833
Compare
And doc fix.
ca7b4bf
to
b1bc91a
Compare
b1bc91a
to
5c7d529
Compare
@julianoes can you please merge PR if it possible? |
Thanks @irsdkv! |
AttitudeAngularVelocityBody
, AttitudeAngularVelocityBody
and ActuatorOutputStatus
to telemetry
Added:
AttitudeAngularVelocityBody: current angular speed from ATTITUDE_QUATERNION message.
ActuatorControlTarget: current vehicle attitude and body angular rates.
ActuatorOutputStatus: current raw values of the actuator outputs.
Related PR in proto: mavlink/MAVSDK-Proto#97