-
Notifications
You must be signed in to change notification settings - Fork 7.5k
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
Comments
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 into |
@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. |
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).
I've just pushed an updated You can compare old and new
|
#216 seems to be the better choice. |
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?) |
Hm, I don't know what the best solution is. Maybe just leave it for a few days so we can evaluate the content |
Well, this solution is in master MPU6050_6Axis_MotionApps_V6_12.h now. (Can't find #216) |
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 -90
90 to non degenerate -180180i simply used the code below.
uint8_t MPU6050::dmpGetYawPitchRoll(float *data, Quaternion *q, VectorFloat *gravity) {
return 0;
}
The text was updated successfully, but these errors were encountered: