File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88TODO: We could implement this interface such that setting other filters
99 could work when the initial filters were set to zero using the
1010 software fallback. Or could the software filters even be changed
11- after the connection was opened? We need to document that bahaviour !
11+ after the connection was opened? We need to document that behaviour !
1212 See also the IXXAT interface.
1313
1414"""
Original file line number Diff line number Diff line change @@ -54,12 +54,13 @@ bit 0 of can_id/mask parameters represents the RTR field in CAN frame. See IXXAT
5454VCI documentation, section "Message filters" for more info.
5555
5656List available devices
57- -----------------
57+ ----------------------
5858In case you have connected multiple IXXAT devices, you have to select them by using their unique hardware id.
5959To get a list of all connected IXXAT you can use the function ``get_ixxat_hwids() `` as demonstrated below:
6060
6161 >>> from can.interfaces.ixxat import get_ixxat_hwids
62- >>> for hwid in get_ixxat_hwids(): print (" Found IXXAT with hardware id '%s '." % hwid)
62+ >>> for hwid in get_ixxat_hwids():
63+ ... print (" Found IXXAT with hardware id '%s '." % hwid)
6364 Found IXXAT with hardware id 'HW441489'.
6465 Found IXXAT with hardware id 'HW107422'.
6566
@@ -71,11 +72,11 @@ The IXXAT :class:`~can.BusABC` object is a fairly straightforward interface
7172to the IXXAT VCI library. It can open a specific device ID or use the
7273first one found.
7374
74- The frame exchange *do not involve threads * in the background but is
75+ The frame exchange *does not involve threads * in the background but is
7576explicitly instantiated by the caller.
7677
7778- ``recv() `` is a blocking call with optional timeout.
7879- ``send() `` is not blocking but may raise a VCIError if the TX FIFO is full
7980
8081RX and TX FIFO sizes are configurable with ``rxFifoSize `` and ``txFifoSize ``
81- options, defaulting at 16 for both.
82+ options, defaulting to 16 for both.
You can’t perform that action at this time.
0 commit comments