Korving-F / ublox

Python library for the UBX protocol
MIT License
37 stars 14 forks source link

UBX Packet Parser

License: MIT GitHub contributors

Introduction

This module is able to read from and configure ublox GPS modules through their UBX binary protocol over a serial connection. It can be considered a wrapper around the pyserial module.

A ublox 8 device was used to develop and test this library in combination with the documentation provided by ublox. Many of the messages specified in this document should also be compatible with earlier versions of the device (4/5/6/7) but others might not be backwards compatible.

Test

Move to main directory and issue:

$ python2 -m pytest
$ python3 -m pytest

Supported Messages

Basic Usage

One would usually create a serial connection to the GPS module and proceed to create an instance of UbxStream through which one reads data and sends configuration messages. The UbxStream class comes with functions to save, load and reset configurations as well as an automated way to disable all enabled-by-default NMEA messages. Of course one can enable/disable specific messages by passing in the documented message class and id. One can auto detect serial ports and set the baudrate for the connection.

UBX Parser at work

Other Issues / Examples

        >>> while(True):
        ...     y = x.read()
        ...     if(y.ubx_id == '04'):
        ...         break
        ...
        Receiving
        01 02
        Receiving
        01 04
        >>> y
        <ubx.UbxMessage object at 0x7f7a9dcf7be0>
        >>> x.read(reset=False)
        Receiving
        01 07
        <ubx.UbxMessage object at 0x7f7a9dc69438>
        >>> x.cfg_rate(1000)
        Receiving
        05 01
        Acknowledged. CLS:0x6 ID:0x8
        <ubx.UbxMessage object at 0x7f8d895ea518

Future Improvements

At the moment only activated messages can be read and there is no support yet for polling specific messages. If any desired messages are not included please create an issue.