Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
53 commits
Select commit Hold shift + click to select a range
cedb853
Adding neoVI support for receive_own_messages
pierreluctg Sep 28, 2018
87018fa
Merge branch 'develop' into receive_own_messages
hardbyte Sep 30, 2018
679d1a9
Merge branch 'develop' into receive_own_messages
pierreluctg Oct 2, 2018
752406c
Merge branch 'develop' into receive_own_messages
felixdivo Oct 5, 2018
84aa6b1
Merge pull request #434 from pierreluctg/receive_own_messages
felixdivo Oct 5, 2018
bf56c58
Fix some slcan issues (#447)
christiansandberg Oct 6, 2018
eb8ee51
Make typing dependency conditional < python 3.5
maxchill Oct 7, 2018
46206c1
Merge pull request #452 from maxchill/develop
felixdivo Oct 7, 2018
5f2c5ce
Doc update
felixdivo Oct 7, 2018
63325b2
use is_expedned_id instead of extended_id in Message constructor
felixdivo Oct 7, 2018
18f06f8
Merge pull request #454 from hardbyte/felixdivo-patch-1
felixdivo Oct 8, 2018
487da44
Merge branch 'develop' into fix-is_extended_id
felixdivo Oct 8, 2018
ea1d2f0
Merge pull request #455 from hardbyte/fix-is_extended_id
felixdivo Oct 8, 2018
fae631b
Fixed license header
Lauszus Oct 8, 2018
3e7b5e1
Fixed help text for the "--filter" argument, as the filters should be…
Lauszus Oct 8, 2018
e87189b
Merge pull request #456 from Lauszus/license
felixdivo Oct 9, 2018
70ac964
Fix doc to reflect the correct argument `context`
pierreluctg Oct 12, 2018
66ce24e
Changed asc log timestamps to 6 decimal places and uses real message …
Oct 30, 2018
e566caa
Merge branch 'develop' into feature/asctimestamp
ludobouan Oct 30, 2018
0027384
fix rendering of BusABC docstring
patkan Oct 29, 2018
b2b5341
Merge branch 'develop' into feature/asctimestamp
hardbyte Oct 31, 2018
02cba3b
Merge pull request #469 from ludobouan/feature/asctimestamp
hardbyte Nov 1, 2018
9f6f918
Fix Kvaser CANLIB CAN FD data rate setting
ben-powell-ctct Nov 8, 2018
43763ed
Import name deepcopy for __deepcopy__ method
matth314 Dec 14, 2018
3a092bc
Fix slcan message handling (#462)
christiansandberg Dec 18, 2018
6c5955e
Update argument name in thread safe bus set_filters method.
hardbyte Dec 23, 2018
9453cd0
Extend the thread safe bus tests
hardbyte Dec 23, 2018
093509a
Improved listener docs and docstrings (#484)
hardbyte Dec 23, 2018
5d19dba
Fixed help text for the scaling in the viewer
Lauszus Dec 18, 2018
6ab3d8d
Create separate structs for the Mac PCAN driver
Lauszus Dec 18, 2018
90b6021
Introduced structures for the kvaser driver.
sIuv Dec 2, 2018
04a11cb
Added support for bus statistics.
sIuv Dec 2, 2018
560d1e6
Updated documentation for the new kvaser custom-method get_stats.
sIuv Dec 8, 2018
69db2ec
Moved get_stats to a new documentation section called Custom Methods.
sIuv Dec 26, 2018
35c3fbb
Added new interface: CANalystII interface
Nov 30, 2018
8dbbf65
add baudrate option
Dec 18, 2018
e5cede3
add canalysstii documentation
Dec 18, 2018
d290d93
add timing register table
Dec 28, 2018
7d0783c
add to contributors list and history
Dec 29, 2018
b2a7bde
New SYSTEC interface (#466)
idaniel86 Jan 7, 2019
0b9d240
Prepare release 3.1.0 (#485)
hardbyte Jan 7, 2019
1a74330
Documentation update (#486)
hardbyte Jan 7, 2019
c819526
Allow simultaneous access to IXXAT cards (#488)
XelaRellum Jan 11, 2019
3ae0f37
Adding option to override neovi library name
pierreluctg Jan 14, 2019
8d24b3c
Adding ms to ASC formatted date
pierreluctg Jan 22, 2019
39ec1b1
Merge branch 'develop' into override-lib
hardbyte Jan 23, 2019
89f4c20
Adding option to override neovi library name
pierreluctg Jan 24, 2019
de94772
Fix initialization of usb2can Bus interface object (#501)
acolomb Feb 13, 2019
4ea358f
Message class changes (#497)
felixdivo Feb 13, 2019
f8524c1
Update iscan.py
JanGoeteyn Feb 18, 2019
119999d
canalystii interface take msg.is_extend_id into use and fix typo (#513)
atmlvs Feb 22, 2019
44cefbe
fix #510
felixdivo Feb 22, 2019
0348433
release 3.1.0
felixdivo Feb 23, 2019
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
Prev Previous commit
Next Next commit
New SYSTEC interface (#466)
New SYSTEC interface with tests and documentation.
  • Loading branch information
idaniel86 authored and hardbyte committed Jan 7, 2019
commit b2a7bde67391e0574b480d5331cd914e6cc104a7
3 changes: 2 additions & 1 deletion can/interfaces/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
'neovi': ('can.interfaces.ics_neovi', 'NeoViBus'),
'vector': ('can.interfaces.vector', 'VectorBus'),
'slcan': ('can.interfaces.slcan', 'slcanBus'),
'canalystii': ('can.interfaces.canalystii', 'CANalystIIBus')
'canalystii': ('can.interfaces.canalystii', 'CANalystIIBus'),
'systec': ('can.interfaces.systec', 'UcanBus')
}

BACKENDS.update({
Expand Down
6 changes: 6 additions & 0 deletions can/interfaces/systec/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# coding: utf-8

"""
"""

from can.interfaces.systec.ucanbus import UcanBus
Loading