-
I mean you went all the way to abstracting it with attributes out of the messages it receives and sends and it remains in need of checking the documentation on the protocols in most cases. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 2 replies
-
Sorry @epigramx I'm not entirely clear what the issue is here? pyubx2 is a UBX parser and generation utility library - it's not an end-user application. If you need higher level functionality - like for example the ability to turn on or off all UBX messages of a certain category - then it's a relatively simple matter to build this yourself using this library. There are plenty of examples in the /examples folder (see, for instance, ubxsetrates.py), but if you need specific guidance, raise a query in the Discussions channel and we'll do our best to assist. PyGPSClient is an example of an end-user application which uses the pyubx2 library, and it does have the functionality you're describing as well as the ability to define custom command strings as 'presets'. See the following links for further information: https://github.com/semuconsulting/PyGPSClient In addition, pygnssutils offers a set of command line utilities including a
|
Beta Was this translation helpful? Give feedback.
-
Yep that's what I'm doing right now. By the way: do you have an example on how to turn on RXM-RAWX on USB? I found out how to do it for the CFG-MSG NMEA messages. |
Beta Was this translation helpful? Give feedback.
-
Oh that was silly. I was expecting |
Beta Was this translation helpful? Give feedback.
Sorry @epigramx I'm not entirely clear what the issue is here?
pyubx2 is a UBX parser and generation utility library - it's not an end-user application. If you need higher level functionality - like for example the ability to turn on or off all UBX messages of a certain category - then it's a relatively simple matter to build this yourself using this library. There are plenty of examples in the /examples folder (see, for instance, ubxsetrates.py), but if you need specific guidance, raise a query in the Discussions channel and we'll do our best to assist.
PyGPSClient is an example of an end-user application which uses the pyubx2 library, and it does have the functionality you're describing…