├── .gitignore ├── LICENSE.txt ├── README.md ├── docs └── usage.png ├── setup.cfg ├── setup.py ├── tests ├── __init__.py └── test_checksum.py └── ublox ├── __init__.py └── ubx.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korving-F/ublox/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korving-F/ublox/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korving-F/ublox/HEAD/README.md -------------------------------------------------------------------------------- /docs/usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korving-F/ublox/HEAD/docs/usage.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_checksum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korving-F/ublox/HEAD/tests/test_checksum.py -------------------------------------------------------------------------------- /ublox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ublox/ubx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Korving-F/ublox/HEAD/ublox/ubx.py --------------------------------------------------------------------------------