Mux/demux data from the CSS Electronics' CANmod.router device through Python
Project description
python-can-csscan-mux
The python-can-csscan-mux package allows for muxing/demuxing of data to/from the CSS Electronics CANmod.router device. It is intended to be used as a layer in the python-can ecosystem, to transparently handle muxing/demuxing of data to/from a CANmod.router device.
The package provides two handles:
- A
can.BusABC
wrapper for handling live interfaces in the form ofpython-can-csscan-mux.CSSCANMuxBus
- A reader for handling file interfaces in the form of
python-can-csscan-mux.CSSCANMuxReader
The can.BusABC
is registered as an interface, such that it can be used with can.Bus(interface="csscan_mux" ...
.
For more information on existing python-can interfaces, see the documentation for the python-can package.
For USB streaming, python-can-csscan-mux is often used in combination with python-can-csscan-serial. We recommend to see the documentation for that package, as many of the examples can be re-used with the CANmod.router by incorporating the mux-layer, as exemplified further below.
| ^ | ^
| | | |
+---v-----+----+ +------v-----+------+
| CSSCANMuxBus | | CSSCANMuxReader |
+---+-----^----+ +------+-----^------+
| | | |
+---v-----+----+ +------v-----+------+
| can.BusABC | | can.MessageReader |
+--------------+ +-------------------+
Messages through the mux are matched against the configured rules of the muxer/demuxer. If a message ID matches the configuration the message data is muxed/demuxed. Else the message is passed through unchanged.
The default configuration of the python-can-csscan-mux matches the default configuration of the CANmod.router (firmware version 01.01.01).
Simple USB example
In the following example, the CANmod.router (default config, firmware version 01.01.01) is connected via USB to COM9 on a Windows PC. For details on identifying the relevant port, see the serial documentation. The example assumes that the python-can-csscan-mux and python-can-csscan-serial packages are installed.
The example opens a USB serial connection over COM9 and wraps it in a multiplexer interface. It sends a single CAN frame on the CANmod.router secondary interface port 1 (S1) with the regular CAN ID 0x123
and a 2 byte payload of 0x01 0x23
. After the frame has been transmitted, the example waits for messages on any of the CANmod.router secondary interfaces until stopped manually.
import can
# Default configuration, repeated here for visibility
mux_can_configuration={
None: [
{
"s1": 0,
"s2": 1,
"s3": 2,
"s4": 3,
"mux_ids": [0x010, 0x011],
"mux_id_tx": 0x011
}
]
}
# Open csscan-serial bus
with can.Bus(interface="csscan_serial", channel="COM9") as bus:
# Create csscan-mux layer with the desired configuration (matching the default in this case)
with can.Bus(interface="csscan_mux", channel=bus, mux_can=mux_can_configuration) as mux:
# Transmit example message onto CAN-S1
mux.send(can.Message(channel=0, arbitration_id=0x123, is_extended_id=False, data=[0x01, 0x23]))
# Receive message(s) in perpetuity on all secondary mux interfaces
for msg in mux:
print(msg)
Simple MF4 example (requires python-can-csscan-mf4)
Data from a CANmod.router is logged to a MF4 file. Both the python-can-csscan-mux (current version) and python-can-csscan-mf4 (version 2.4.0) packages are installed. Muxed data is present on CAN channel 2 using the default CANmod.router configuration (firmware version 01.01.01).
The secondary interfaces on the CANmod.router are mapped from the default 0, 1, 2, 3
range to 3, 4, 5, 6
, to avoid confusion with the primary two CAN channels on the CANedge: 1, 2
.
from python_can_csscan_mf4 import MdfFile
from python_can_csscan_mux import CSSCANMuxReader
# Multiplexer configuration to match the CANedge example
mux_can_configuration={
"CAN 2": [
{
"s1": 3,
"s2": 4,
"s3": 5,
"s4": 6,
"mux_ids": [0x010, 0x011]
}
]
}
# Open input file
with MdfFile("00000001.MF4") as reader:
# Create csscan-mux layer
with CSSCANMuxReader(reader=reader, mux_can=mux_can_configuration) as mux:
# Read message(s)
for msg in mux:
print(msg)
Advanced python-can-csscan-mux usage
The below is primarily relevant when the CANmod.router default configuration is changed. When so, the configuration of python-can-csscan-mux must be updated accordingly.
The python-can-csscan-mux takes the following configuration arguments (to the class CSSCANMuxBus
and through the can.Bus()
factory):
channel
: Reference to the underlying python-cancan.BusABC
instancemux_can
: Dictionary of muxing configurations. Format is{channel: [{"s1": S1, "s2": S2, "s3": S3, "s4": S4, "mux_ids": [CAN ID 1 (hex), CAN ID 2 (hex), ...], "mux_id_tx": CAN Tx ID (hex)}, ...], ... }
.- Map 11-bit ID 0x010 on primary channel 1 to secondary channels 5, 6, 7, 8:
{1: [{"s1": 5, "s2": 6, "s3": 7, "s4": 8, "mux_ids": [0x010]}]}
- Map 29-bit IDs 0x00000011 and 0x00000012 on primary channel 2 to secondary channels 5, 6, 7 and 8, with ID 0x00000012 used for transmission:
{2: [{"s1": 5, "s2": 6, "s3": 7, "s4": 8, "mux_ids": [0x80000000 | 0x00000011, 0x80000000 | 0x00000012], "mux_id_tx": 0x80000000 | 0x00000012}]}
- Defaults to
{None: [{"s1": 0, "s2": 1, "s3": 2, "s4": 3, "mux_ids": [0x010, 0x011], "mux_id_tx": 0x011}]}
- Map 11-bit ID 0x010 on primary channel 1 to secondary channels 5, 6, 7, 8:
mux_fd
: Flag controlling if the muxed output messages should be emitted as classical CAN or CAN FD frames. If enabled, the enhanced DLC capabilities of CAN FD will be utilized. Defaults to true.mux_brs
: Flag controlling if the muxed output messages should be emitted using CAN FD bit-rate-switching. Requires FD. Defaults to true.
An example of mapping channels 3, 4, 5 and 6 to CAN channel 1 and channels 7, 8, 9 and 10 to CAN channel 2 through the muxing interface:
mux_can={
1: [
{
"s1": 3,
"s2": 4,
"s3": 5,
"s4": 6,
"mux_ids": [0x010, 0x011],
"mux_id_tx": 0x011
}
],
2: [
{
"s1": 7,
"s2": 8,
"s3": 9,
"s4": 10,
"mux_ids": [0x010, 0x011],
"mux_id_tx": 0x011
}
]
}
Any messages sent on CAN channel 1 and 2 interfaces not matching the default ID (0x010
) will be forwarded unaltered. This includes if another node writes on ID 0x011
reserved for transmission from this node.
For the CSSCANMuxReader
class, most of the same arguments as for the CSSCANMuxBus
are supported:
reader
: Reference to the underlyingIterable[can.Message]
instance, e.g. a python-can file readermux_can
: Same as forCSSCANMuxBus
mux_fd
: Same as forCSSCANMuxBus
mux_brs
: Same as forCSSCANMuxBus
The reader has no support for transmission of messages.
Command-line interface (CLI)
The python-can ecosystem provides a series of command-line tools, e.g.:
- can_logger: Tool to display live data
- can_viewer: Tool to display a table of received messages
The tools can be used with python-can-csscan-mux to e.g. display demuxed data.
While using the CLI, it is not possible to
-
Instantiate the wrapped
can.BusABC
layer. Instead, the wrapped layer is selected using a--driver
argument, with the name of the interface of the wrapped layer. The channel argument is forwarded to the wrapped interface, along with any other unknown commandline arguments. -
Configure the muxing using a Python dictionary. The dictionary is mapped to a set of strings for each channel. There is no support for tx.
- To configure the input for CAN channel X, use
--mux_canX=
- The mapping for a set of network IDs is
CAN ID 1 (hex):CAN ID 2 (hex):...#S1:S2:S3:S4
. E.g. to map the regular 11-bit ID 0x010 to channels 0, 1, 2 and 3:010#0:1:2:3
. To map an extended ID, write the ID using 8 characters, i.e. the 29-bit ID0x00000010
becomes00000010
. Multiple mux networks on the same bus are not supported.
- To configure the input for CAN channel X, use
Example, can_logger
To display demuxed data from a python-can-csscan-serial interface:
can_logger --interface=csscan_mux --driver=csscan_serial --channel=COM9
To dump demuxed data to a file from a python-can-csscan-serial interface:
can_logger --interface=csscan_mux --driver=csscan_serial --channel=COM9 -f=F:/dump.log
To dump demuxed data to a file from a MF4 log file with the help of python-can-csscan-mf4:
can_logger --interface=csscan_mux --driver=csscan_mf4 --channel=00000001.MF4 -f=F:/dump.log
Example, can_viewer
To display demuxed data from a python-can-csscan-serial interface:
can_viewer --interface=csscan_mux --driver=csscan_serial --channel=COM9
.
To display demuxed and decoded data from a python-can-csscan-serial interface:
can_viewer --interface=csscan_mux --driver=csscan_serial --channel=COM9 -d=rules.txt
With the file rules.txt
containing below two example decoding rules:
2:<HHHH:0.625:0.625:0.625:0.625
3:<HHHH:0.625:0.625:0.625:0.625
For more information on the decoding format, see the python-can documentation.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file python_can_csscan_mux-24.10.30-py3-none-any.whl
.
File metadata
- Download URL: python_can_csscan_mux-24.10.30-py3-none-any.whl
- Upload date:
- Size: 15.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2ea9eab047f1fe7eaf2c4cb1b3934fd5178081c59d77b25003bf7d301344b333 |
|
MD5 | 65bcf72bbcb5a44ac9ecac555497daeb |
|
BLAKE2b-256 | 4f44de168da8efc8ee6d87889d930e1942a7bd64151d0d284fc683dc7b919051 |