-
Notifications
You must be signed in to change notification settings - Fork 356
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
Altitude and velocity values #313
Comments
Uhhh, acro variant doesn't have baro right? |
Yes it does have one. |
Anyone? |
There's nothing to fix, look at msp code or telemetry, altitude value is
there.
What you need to do is zero it at takeoff (I believe there's a key combo).
Then the numbers will be relative to ground.
…On Tue, Jul 18, 2017 at 4:59 PM, NathanNoumowe ***@***.***> wrote:
Anybody?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#313 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AEbO2FaD0oCU-55KfCKljIHy-eESYmKTks5sPGXHgaJpZM4OWuXe>
.
|
Okay thanks I'm gonna try that. Otherwise I fixed the problem with the velocity when I turn the card upside down. Files that i have were already edited by someone before me and there was a delay in the main. When I took it off, values stopped getting bigger and bigger when I flip the card. But for now the altitude value is still wrong. |
I found this at the line 130, in the file telemetry_hott.c :
I'm not sure if it contain altitude value but I can not display it. |
thats *GPS* altitude, you want the one from BARO, i already explained where
it was.
If you have no GPS then clearly there's not gonna be valid value in there.
…On Mon, Jul 24, 2017 at 7:11 PM, NathanNoumowe ***@***.***> wrote:
I found this at the line 130, in the file telemetry_hott.c :
// Altitude
HoTTV4GPSModule.altitudeLow = GPS_altitude & 0x00FF;
HoTTV4GPSModule.altitudeHigh = GPS_altitude >> 8;
I'm not sure if it contain altitude value but I can not display it.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#313 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AEbO2CY8fnGZ6kX-sIlrIL4xEuNmW5JJks5sRG21gaJpZM4OWuXe>
.
|
Hello, I am trying to trigger a parachute with a naze32 Acro and for that I need to get the altitude and velocity values. So In the imu.c file I used printf to watch their values:
But the altitude value isn't right at all. It's changing pretty slowly and the values are huge while it's suppose to be in centimeters. The velocity have pretty much same problems.
The values get also completly crazy when I turn the card upside down.
Is it normal? If it's not how can I fix this?
Thank you in advance for your answers.
The text was updated successfully, but these errors were encountered: