File tree Expand file tree Collapse file tree 3 files changed +31
-1
lines changed Expand file tree Collapse file tree 3 files changed +31
-1
lines changed Original file line number Diff line number Diff line change
1
+ Version 3.1.0
2
+ ====
3
+
4
+ Major features
5
+ --------------
6
+
7
+ Two new interfaces this release:
8
+
9
+ - SYSTEC contributed by @idaniel86 in PR #466
10
+ - CANalyst-II contributed by @smeng9 in PR #476
11
+
12
+
13
+ Other notable changes
14
+ ---------------------
15
+
16
+ - #477 kvaser interface now supports bus statistics via a custom bus method.
17
+ - #471 fix CAN FD issue in kvaser interface
18
+ - #434 neovi supports receiving own messages
19
+ - #447 improvements to serial interface:
20
+ * to allow receiving partial messages
21
+ * to fix issue with DLC of remote frames
22
+ * addition of unit tests
23
+ - #462 `Notifier` issue with asyncio.
24
+ - #481 - Fix PCAN support on OSX.
25
+ - #455 minor fix to `Message` initializer.
26
+
27
+
1
28
Version 3.0.0
2
29
====
3
30
Original file line number Diff line number Diff line change 8
8
9
9
import logging
10
10
11
- __version__ = "3.0.0 "
11
+ __version__ = "3.1.0-rc.1 "
12
12
13
13
log = logging .getLogger ('can' )
14
14
@@ -21,6 +21,7 @@ class CanError(IOError):
21
21
"""
22
22
pass
23
23
24
+
24
25
from .listener import Listener , BufferedReader , RedirectReader
25
26
try :
26
27
from .listener import AsyncBufferedReader
Original file line number Diff line number Diff line change @@ -46,6 +46,8 @@ The CAN viewer terminal script was contributed by Kristian Sloth Lauszus in 2018
46
46
47
47
The CANalyst-II interface was contributed by Shaoyu Meng in 2018.
48
48
49
+ The SYSTEC interface was contributed by @idaniel86
50
+
49
51
Support for CAN within Python
50
52
-----------------------------
51
53
You can’t perform that action at this time.
0 commit comments