We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
My fix for issue #44 had the wrong indexes since I foolishly copied it directly from the ubx.py code.
the proper __init__ method should have been the following:
__init__
def __init__(self, manufacturer, data): self.sentence_type = manufacturer + data[0] super(GRM, self).__init__(manufacturer, data[1:])
This same method (with SRF) should be added to srf.py
The text was updated successfully, but these errors were encountered:
Merge pull request #48 from silentquasar/master
c669e4d
Issue #46 - Proper parsing of GRM and SRF messages
No branches or pull requests
My fix for issue #44 had the wrong indexes since I foolishly copied it directly from the ubx.py code.
the proper
__init__
method should have been the following:This same method (with SRF) should be added to srf.py
The text was updated successfully, but these errors were encountered: