Repository URL to install this package:
Version:
3.2.1 ▾
|
"""Classes and functions related to handling the native protocol of U-blox
GPS receivers.
"""
from .encoder import create_ubx_encoder
from .enums import UBXClass
from .packet import UBX, UBXPacket
from .parser import UBXParser, create_ubx_parser
__all__ = (
"create_ubx_parser",
"create_ubx_encoder",
"UBX",
"UBXClass",
"UBXPacket",
"UBXParser",
)