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

Multi-Constillation Support for custom Sentences #129

Open
JasonPittenger opened this issue Oct 27, 2023 · 0 comments
Open

Multi-Constillation Support for custom Sentences #129

JasonPittenger opened this issue Oct 27, 2023 · 0 comments

Comments

@JasonPittenger
Copy link

Can you expand the custom sentence extraction to support multiple systems?

For example, I'm looking at VDOP that's coming from the GSA sentance.
I'm using

TinyGPSCustom	vdopGP(gps, "GPGSA", 17);

However, I am also using Beidou Navigation Satellite System (BDS) BD, Global Navigation Satellite System (GLONASS) GL and Global Navigation Satellite System (GNSS) GN.
So I really should use

TinyGPSCustom	vdopGP(gps, "GPGSA", 17);
TinyGPSCustom	vdopGN(gps, "GNGSA", 17);
TinyGPSCustom	vdopGL(gps, "GLGSA", 17);
TinyGPSCustom	vdopBD(gps, "BDGSA", 17);

And manually combine the values somehow.

Is there a way to add a custom extraction that works for multiple systems?
As in, the command would only ask for the sentence type and not the system prefix?

For example:

TinyGPSCustom	vdop(gps, "GSA", 17);
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

1 participant