Skip to content

Ixxat CAN FD support #1119

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 24 commits into from
Dec 7, 2021
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
76de625
Added: Ixxat interface copy before start changing for canfd.
fjburgos Aug 16, 2021
7a52d8f
Changed: ixxat_fd adapting for usage with vcinpl2.dll instead of vcin…
fjburgos Aug 16, 2021
178b813
Fixed: ixxat fd receive function with timeout = 0 was causing to rece…
fjburgos Aug 16, 2021
0a31bde
Added: ixxat_fd baudrate from user options instead of hardcoded.
fjburgos Aug 18, 2021
6dbaa1c
Added: ixxat_fd channel capabilities check.
fjburgos Aug 18, 2021
a0af831
Added: Myself to contributors list.
fjburgos Aug 18, 2021
2dfd3cb
Related to ixxat_fd:
fjburgos Aug 21, 2021
f341058
Merge branch 'develop' into feature/ixxat_fd
fjburgos Aug 21, 2021
d9f64ec
Changed: renamed files before "merging" ixxat and ixxat_fd interfaces.
fjburgos Sep 13, 2021
b5653cf
Changed: Merged structures, exceptions and constants from ixxat-fd to…
fjburgos Sep 13, 2021
ef82e6c
Added: Ixxat interface proxy class delegating to related implementati…
fjburgos Sep 13, 2021
34fc77b
Changed: Tests for CAN-FD in ixxat updated according to last changes.
fjburgos Sep 13, 2021
b59c8b1
Changed: Suggested changes from pull request review.
fjburgos Sep 27, 2021
232ec5c
Merge remote-tracking branch 'origin/develop' into feature/ixxat_fd
fjburgos Nov 16, 2021
e177c94
Changed: Suggested changes from pull request review.
fjburgos Nov 16, 2021
dd196ae
Changed: Type hint, typing.Tuple instead of tuple.
fjburgos Nov 18, 2021
4f52c81
Changed: TSEG1, TSEG2 and SJW parameters available as optional advanc…
fjburgos Nov 23, 2021
e54b735
Update doc/interfaces/ixxat.rst
fjburgos Nov 25, 2021
81b8697
Changed: Documentation.
fjburgos Nov 27, 2021
1e81fed
Changed: Ixxat extended parameter default from False to True. Now it …
fjburgos Dec 6, 2021
2da4757
Changed: Ixxat parameter unique_hardware_id type hint is now optional.
fjburgos Dec 6, 2021
189fb3b
Changed: Ixxat doc comment types removed (let Sphinx derive them from…
fjburgos Dec 6, 2021
6147e3f
Changed: Updated Ixxat tests to use new argument names.
fjburgos Dec 6, 2021
f9161cb
Fixed: Missing **kwargs parameter in vcinpl and vcinpl2.
fjburgos Dec 6, 2021
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: 1 addition & 0 deletions CONTRIBUTORS.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ Jan Goeteyn
"ykzheng" <[email protected]>
Lear Corporation
Nick Black <[email protected]>
Francisco Javier Burgos Macia
5 changes: 4 additions & 1 deletion can/interfaces/ixxat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,7 @@
Copyright (C) 2016 Giuseppe Corbelli <[email protected]>
"""

from can.interfaces.ixxat.canlib import IXXATBus, get_ixxat_hwids
from can.interfaces.ixxat.canlib import IXXATBus
from can.interfaces.ixxat.canlib_vcinpl import (
get_ixxat_hwids,
) # import this and not the one from vcinpl2 for backward compatibility
Loading