Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
2f6830d
Merge pull request #524 from hardbyte/release-3.1.1
hardbyte Feb 26, 2019
d5dd7fe
Merge pull request #580 from hardbyte/release-3.2.0
hardbyte May 16, 2019
2a30f25
update wheel package before deploy
hardbyte May 17, 2019
ad3f830
Minor version bump and doc update
hardbyte May 17, 2019
a91ca25
Minor version bump to v3.2.1
hardbyte Jun 24, 2019
667278e
Update changelog for v3.2.1
hardbyte Jun 24, 2019
a0f0ea7
Update version to v3.3.0
hardbyte Jun 27, 2019
07d1a18
Merge pull request #629
hardbyte Jun 27, 2019
591967c
Backport pytest-runner fix from #633
hardbyte Jul 23, 2019
1f0fb8b
Bump version to 3.3.1
hardbyte Jul 23, 2019
f90f6be
Add a new interface: dg interface
markCSDP Aug 7, 2019
692d082
Add a new interface: dg interface including server_commands file
markCSDP Aug 7, 2019
a1883e5
Add a new interface: dg interface removed comments
markCSDP Aug 7, 2019
91a56d3
Merge branch 'develop' into develop
markCSDP Aug 8, 2019
fbe0d79
Merge remote-tracking branch 'upstream/develop' into develop
markCSDP Aug 13, 2019
f25d5b9
Updates from comments from first attempt at doing the pull request
markCSDP Aug 13, 2019
7dddd29
Merge remote-tracking branch 'upstream/develop' into develop
markCSDP Aug 16, 2019
182f4ad
Changed from dgBus to DGBus
markCSDP Aug 16, 2019
70fc573
adding server_commands.py file, fixed detect()
markCSDP Aug 16, 2019
fb27c14
fix for test of thread-safe sched
markCSDP Aug 16, 2019
d44acd8
removed failing test
markCSDP Aug 16, 2019
c1b58a8
removed failing test
markCSDP Aug 16, 2019
2534898
fixed pylint and black errors
markCSDP Aug 16, 2019
efc960b
ran Python3.6 black on dg.py
markCSDP Aug 16, 2019
1d4c6a7
Do not incorrectly reset CANMsg.MSGTYPE on remote frame.
craffert0 Jul 29, 2019
29a235b
Bump version to 3.3.2
hardbyte Aug 15, 2019
6aa844e
As requested, removed the Gryphon Protocol Python, put as external op…
markCSDP Sep 19, 2019
9ae917d
Merge branch 'develop' into develop
markCSDP Sep 19, 2019
cc55956
Merge remote-tracking branch 'upstream/master' into develop
markCSDP Feb 19, 2020
5ea5cfc
Merge branch 'develop' of https://github.com/DG-Technologies/python-c…
markCSDP Feb 19, 2020
a8c8212
Merge branch 'develop' of https://github.com/hardbyte/python-can into…
markCSDP Feb 19, 2020
a2c93c7
fixed issues caused by merge
markCSDP Feb 20, 2020
c5fbcba
fixes from merge issue
markCSDP Feb 20, 2020
f4e8a3e
syntax correction, from fixes to merge
markCSDP Feb 20, 2020
ac79af0
Merge branch 'develop' into develop
hardbyte Nov 16, 2020
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
3 changes: 3 additions & 0 deletions CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,6 @@ Jan Goeteyn
"ykzheng" <wishdo@gmail.com>
Lear Corporation
Nick Black <dank@qemfd.net>
Michael Ohtake <mikado98765@gmail.com>
Mark Ciechanowski <markc@dgtech.com>
DG Technologies, Inc.
3 changes: 2 additions & 1 deletion can/interfaces/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"canalystii": ("can.interfaces.canalystii", "CANalystIIBus"),
"systec": ("can.interfaces.systec", "UcanBus"),
"seeedstudio": ("can.interfaces.seeedstudio", "SeeedBus"),
"cantact": ("can.interfaces.cantact", "CantactBus"),
"cantact": ("can.interfaces.cantact", "CantactBus"),
"dg": ("can.interfaces.dg", "DGBus"),
}

BACKENDS.update(
Expand Down
1 change: 1 addition & 0 deletions can/interfaces/dg/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from can.interfaces.dg.dg import DGBus
Loading