-
Notifications
You must be signed in to change notification settings - Fork 7.6k
GNSS RTK: Add basic integration #90890
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
base: main
Are you sure you want to change the base?
Conversation
@@ -0,0 +1,73 @@ | |||
/* |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd like some feedback WRT this file: As far as I'm concerned this CRC (CRC24Q) calculation is specific to RTCM3, however I don't know if it's preferred to put this under the more generic include/zephyr/sys/crc.h
36301ff
to
e333b76
Compare
This patch incorporates the basic RTK API as well as a basic client integration (Serial) as a way to receive and publish the RTK data. Specifically, this patch includes: - API additions. - RTCM3 frame decoding. - Unit testsuite for RTCM3 frame decoding. - Serial client to receive and publish RTK data corrections. - GNSS RTK sample with simple base-station script over serial and Zephyr app displaying data-corrections applied. Signed-off-by: Luis Ubieda <[email protected]>
Enable driver to consume RTK data-correction messages published in order to enhance GNSS Navigation results. Signed-off-by: Luis Ubieda <[email protected]>
e333b76
to
a7984f5
Compare
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comments captured from Arch WG review 260701
menuconfig GNSS_RTK | ||
bool "GNSS RTK client" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
select EXPERIMENTAL
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Suggestion: Move to drivers/gnss/*
Description
This PR introduces RTK (Real Time Kinematics) to GNSS modems by providing a path to feed RTK correction data (proposed on #90363).
Detailed changes:
Note
Adding DNM until both conditions are resolved.