Skip to content
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

YawPitchRaw algorithm mistake #222

Open
yonoodle opened this issue Mar 26, 2016 · 7 comments
Open

YawPitchRaw algorithm mistake #222

yonoodle opened this issue Mar 26, 2016 · 7 comments

Comments

@yonoodle
Copy link

Thank you for this WONDERFUL lib.

but the "roll" algorithm in the dmpGetYawPitchRoll should be
data[2] = atan2(gravity -> y , gravity -> z);

(at least one of the pitch or roll should be as simple as that, and only one uses sqrt)
see complete derivation
https://cache.freescale.com/files/sensors/doc/app_note/AN3461.pdf

about extending pitch and roll from degenerate -9090 to non degenerate -180180
i simply used the code below.

uint8_t MPU6050::dmpGetYawPitchRoll(float *data, Quaternion *q, VectorFloat *gravity) {

// yaw: (about Z axis)
data[0] = atan2(2*q -> x*q -> y - 2*q -> w*q -> z, 2*q -> w*q -> w + 2*q -> x*q -> x - 1);

//pitch

data[1] = atan2(gravity -> x , sqrt(gravity -> y*gravity -> y + gravity -> z*gravity -> z));
//roll
data[2] = atan2(gravity -> y , gravity -> z);

if(gravity->z<0)
{
    if(data[1]>0)
    {  data[1] = 3.1415926 - data[1] ; }
    else { data[1] = -3.1415926 - data[1] ; }
}

return 0;
}

@yonoodle yonoodle changed the title YawPitchRaw algorithm mistaken YawPitchRaw algorithm mistake Mar 26, 2016
@eadf
Copy link
Collaborator

eadf commented Apr 1, 2016

If we had a development branch I could check-in quick fixes like this. The community could then take part in the testing. What do you think @jrowberg? You will still have the final say on what gets merged intomaster.

@jrowberg
Copy link
Owner

jrowberg commented Apr 1, 2016

@eadf: I'd be perfectly happy with that approach. Back when I first created the repository, I knew very little about Git and best practices, so doing that at the time didn't even occur to me.

eadf added a commit that referenced this issue Apr 16, 2016
Thanks @yonoodle

Added a temporary #ifdef condition so that the new code can easily be tested and compared with the old.
I will remove the old code and the condition after a few weeks (if the new one passes all tests).
@eadf
Copy link
Collaborator

eadf commented Apr 16, 2016

I've just pushed an updated MPU6050::dmpGetYawPitchRoll() implementation to the 'develop' branch.
The new roll value (thanks @yonoodle) can detect if the device is upside down. The old roll could not.

You can compare old and new dmpGetYawPitchRoll() with this (temporary) #define:

#define USE_OLD_DMPGETYAWPITCHROLL
#include "MPU6050_6Axis_MotionApps20.h"

@eadf
Copy link
Collaborator

eadf commented Sep 23, 2021

#216 seems to be the better choice.
I think the develop branch can be archived now, as it is badly out of date.

@jrowberg
Copy link
Owner

I think the develop branch can be archived now, as it is badly out of date.

I don't see a way to truly archive a branch, only delete. Is there anything necessary to keep? Should I tag the develop HEAD and then just delete the branch? (Or would that delete the tag and everything with it?)

@eadf
Copy link
Collaborator

eadf commented Sep 23, 2021

Hm, I don't know what the best solution is. Maybe just leave it for a few days so we can evaluate the content

@eadf
Copy link
Collaborator

eadf commented Sep 26, 2021

Well, this solution is in master MPU6050_6Axis_MotionApps_V6_12.h now. (Can't find #216)
Close?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants