Hi LI,
What about supporting GPS with dual antenna that output a heading message? the new UBLOX supports this. So there would only be one GPS signal into the openIMU but the heading would come from the heading message directly instead of velocities.
Hi LI,
What about supporting GPS with dual antenna that output a heading message? the new UBLOX supports this. So there would only be one GPS signal into the openIMU but the heading would come from the heading message directly instead of velocities.
Yes, you can. But you need to modify some of the source code:
Thanks!
I could not find the GPS heading in the code. Is this on a different branch or something that will be released in the future?
any plans to support this for UBLOX?
and what is the parameter for
"set the heading from GNSS always valid."
Thanks
@robotsrobots
In my test, I adds ublox nav_pvt support. Since it is open-source, it is very easy to add support of GPS receivers.
To set the heading from GNSS always valid, you need set a variable in UpdateFunctions.c called "useMagHeading" FALSE.
Indeed, you need to a bit more to make this work reliably. For single antenna GNSS receiver, heading is derived from velocity, and heading accuracy is determined by velocity. We estimate heading variance used in the Kalman fitler according to GNSS velocity.
But since you decide to use a dual-antenan GNSS receiver, the heading accuracy is decided by the separation between the antenna and the positioning engine (RTK, PPP).
@robotsrobots hi were you able to implement this? If so, what did the results look like?