File tree 3 files changed +4
-3
lines changed 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 8
8
import logging
9
9
from typing import Dict , Any
10
10
11
- __version__ = "4.0.0-dev.2 "
11
+ __version__ = "4.0.0-rc.0 "
12
12
13
13
log = logging .getLogger ("can" )
14
14
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ The CANalyst-II interface was contributed by Shaoyu Meng in 2018.
49
49
Support for CAN within Python
50
50
-----------------------------
51
51
52
- Python natively supports the CAN protocol from version 3.3 on, if running on Linux:
52
+ Python natively supports the CAN protocol from version 3.3 on, if running on Linux (with a sufficiently new kernel) :
53
53
54
54
============== ============================================================== ====
55
55
Python version Feature Link
@@ -58,4 +58,5 @@ Python version Feature
58
58
3.4 Broadcast Management (BCM) commands are natively supported `Docs <https://docs.python.org/3/library/socket.html#socket.CAN_BCM >`__
59
59
3.5 CAN FD support `Docs <https://docs.python.org/3/library/socket.html#socket.CAN_RAW_FD_FRAMES >`__
60
60
3.7 Support for CAN ISO-TP `Docs <https://docs.python.org/3/library/socket.html#socket.CAN_ISOTP >`__
61
+ 3.9 Native support for joining CAN filters `Docs <https://docs.python.org/3/library/socket.html#socket.CAN_RAW_JOIN_FILTERS >`__
61
62
============== ============================================================== ====
Original file line number Diff line number Diff line change 1
- /* This promela model was used to verify the concurrent design of the bus object. */
1
+ /* This promela model was used to verify a past design of the bus object. */
2
2
3
3
bool lock = false ;
4
4
You can’t perform that action at this time.
0 commit comments