Skip to content
Snippets Groups Projects
Commit aa408655 authored by Andrew Tridgell's avatar Andrew Tridgell
Browse files

Compass: fixed the order of rotations in the compass driver

this should fix the massive heading issues that people have been
reporting. Please test!
parent 0e603732
No related branches found
No related tags found
No related merge requests found
......@@ -264,10 +264,10 @@ bool AP_Compass_HMC5843::read()
// rotate to the desired orientation
Vector3f rot_mag = Vector3f(mag_x,mag_y,mag_z);
rot_mag.rotate(_orientation);
if (product_id == AP_COMPASS_TYPE_HMC5883L) {
rot_mag.rotate(ROTATION_YAW_90);
}
rot_mag.rotate(_orientation);
rot_mag += _offset.get();
mag_x = rot_mag.x;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment