-
Notifications
You must be signed in to change notification settings - Fork 97
New issue
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
Add an example byte logger. #140
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
# Copyright (C) 2015 Swift Navigation Inc. | ||
# Contact: Mark Fine <mark@swiftnav.com> | ||
# | ||
# This source is subject to the license found in the file 'LICENSE' which must | ||
# be be distributed together with this source. All other rights reserved. | ||
# | ||
# THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, | ||
# EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED | ||
# WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. | ||
|
||
import time | ||
|
||
from sbp.client.drivers.pyserial_driver import PySerialDriver | ||
from sbp.client.loggers.byte_logger import ByteLogger | ||
from sbp.client.handler import Handler | ||
|
||
DEFAULT_SERIAL_PORT = "/dev/ttyUSB0" | ||
DEFAULT_SERIAL_BAUD = 1000000 | ||
DEFAULT_LOG_FILENAME = time.strftime("sbp-%Y%m%d-%H%M%S.log") | ||
|
||
def get_args(): | ||
""" | ||
Get and parse arguments. | ||
""" | ||
import argparse | ||
parser = argparse.ArgumentParser(description="Swift Navigation SBP Bytes Example.") | ||
parser.add_argument("-s", "--serial-port", | ||
default=[DEFAULT_SERIAL_PORT], nargs=1, | ||
help="specify the serial port to use.") | ||
parser.add_argument("-b", "--baud", | ||
default=[DEFAULT_SERIAL_BAUD], nargs=1, | ||
help="specify the baud rate to use.") | ||
parser.add_argument("-f", "--filename", | ||
default=[DEFAULT_LOG_FILENAME], nargs=1, | ||
help="specify the filename to write to.") | ||
return parser.parse_args() | ||
|
||
def main(): | ||
args = get_args() | ||
|
||
with PySerialDriver(args.serial_port[0], args.baud[0]) as driver: | ||
with Handler(driver.read, driver.write) as link: | ||
with ByteLogger(args.filename[0]) as logger: | ||
link.add_callback(logger) | ||
link.start | ||
|
||
try: | ||
while True: | ||
time.sleep(0.1) | ||
except KeyboardInterrupt: | ||
pass | ||
|
||
if __name__ == "__main__": | ||
main() |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe clarify what the program does a little more: "Parses an SBP stream from serial and writes it to a file in the same binary format."