diff --git a/README.rst b/README.rst index 3ab5a4a54..159df5fba 100644 --- a/README.rst +++ b/README.rst @@ -1,19 +1,9 @@ python-can ========== -|release| |docs| |build| - -.. |release| image:: https://img.shields.io/pypi/v/python-can.svg - :target: https://pypi.python.org/pypi/python-can/ - :alt: Latest Version - -.. |docs| image:: https://readthedocs.org/projects/python-can/badge/?version=stable - :target: https://python-can.readthedocs.io/en/stable/ - :alt: Documentation Status - -.. |build| image:: https://travis-ci.org/hardbyte/python-can.svg?branch=master - :target: https://travis-ci.org/hardbyte/python-can - :alt: CI Server + +*NOTE*: I was using this fork of hardbyte/python-can as a base of python-j1939 but it's no longer needed. +the python-j1939 requires only the develop branch of hardbyte/python-can. No not use this repo for any future development, instead go to the source at hardbyte/python-can. The **C**\ ontroller **A**\ rea **N**\ etwork is a bus standard designed diff --git a/can/logger.py b/can/logger.py index 7f7c6842f..4c720e878 100644 --- a/can/logger.py +++ b/can/logger.py @@ -78,7 +78,8 @@ def main(): config["bitrate"] = results.bitrate bus = can.interface.Bus(results.channel, **config) print('Can Logger (Started on {})\n'.format(datetime.datetime.now())) - logger = Logger(results.log_file) + #logger = can.Logger(results.log_file) + notifier = can.Notifier(bus, [print], timeout=0.1) try: while True: diff --git a/can/notifier.py b/can/notifier.py index bc9f8f68c..4b5d93242 100644 --- a/can/notifier.py +++ b/can/notifier.py @@ -45,3 +45,4 @@ def rx_thread(self): finally: for listener in self.listeners: listener.stop() +