Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion can/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env python
# coding: utf-8

"""
Expand Down
3 changes: 0 additions & 3 deletions can/message.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,6 @@ def __init__(self, timestamp=0.0, arbitration_id=0, is_extended_id=None,
if is_extended_id is not None:
self.is_extended_id = is_extended_id
else:
if not extended_id:
# Passed extended_id=False (default argument is True) so we warn to update
warnings.warn("extended_id is a deprecated parameter, use is_extended_id", DeprecationWarning)
self.is_extended_id = extended_id

self.is_remote_frame = is_remote_frame
Expand Down
2 changes: 1 addition & 1 deletion doc/scripts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ can.viewer

A screenshot of the application can be seen below:

.. image:: ../images/viewer.png
.. image:: images/viewer.png
:width: 100%

The first column is the number of times a frame with the particular ID that has been received, next is the timestamp of the frame relative to the first received message. The third column is the time between the current frame relative to the previous one. Next is the length of the frame, the data and then the decoded data converted according to the ``-d`` argument. The top red row indicates an error frame.
Expand Down