forked from Archive/PX4-Autopilot
Added warning, needs more work on the rotation matrix output
This commit is contained in:
parent
d60173224f
commit
1a107bd7bf
|
@ -413,6 +413,8 @@ int attitude_estimator_ekf_thread_main(int argc, char *argv[])
|
|||
|
||||
/* send out */
|
||||
att.timestamp = raw.timestamp;
|
||||
|
||||
// XXX Apply the same transformation to the rotation matrix
|
||||
att.roll = euler[0] - ekf_params.roll_off;
|
||||
att.pitch = euler[1] - ekf_params.pitch_off;
|
||||
att.yaw = euler[2] - ekf_params.yaw_off;
|
||||
|
|
Loading…
Reference in New Issue