1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
.. _serial:
CAN over Serial
===============
A text based interface. For example use over serial ports like
``/dev/ttyS1`` or ``/dev/ttyUSB0`` on Linux machines or ``COM1`` on Windows.
Remote ports can be also used via a special URL. Both raw TCP sockets as
also RFC2217 ports are supported: ``socket://192.168.254.254:5000`` or
``rfc2217://192.168.254.254:5000``. In addition a virtual loopback can be
used via ``loop://`` URL.
The interface is a simple implementation that has been used for
recording CAN traces.
.. note::
The properties **extended_id**, **is_remote_frame** and **is_error_frame**
from the class:`~can.Message` are not in use. This interface will not
send or receive flags for this properties.
Bus
---
.. autoclass:: can.interfaces.serial.serial_can.SerialBus
.. automethod:: _recv_internal
Internals
---------
The frames that will be sent and received over the serial interface consist of
six parts. The start and the stop byte for the frame, the timestamp, DLC,
arbitration ID and the payload. The payload has a variable length of between
0 and 8 bytes, the other parts are fixed. Both, the timestamp and the
arbitration ID will be interpreted as 4 byte unsigned integers. The DLC is
also an unsigned integer with a length of 1 byte. Extended (29-bit)
identifiers are encoded by adding 0x80000000 to the ID. For example, a
29-bit CAN ID of 0x123 is encoded with an arbitration ID of 0x80000123.
Serial frame format
^^^^^^^^^^^^^^^^^^^
+-------------------+----------------+-----------------------------------------------+-------------------------------+-------------------------+---------+--------------+
| | Start of frame | Timestamp | DLC | Arbitration ID | Payload | End of frame |
+===================+================+==============================+================+===============================+=========================+=========+==============+
| **Length (Byte)** | 1 | 4 | 1 | 4 | 0 - 8 | 1 |
+-------------------+----------------+-----------------------------------------------+-------------------------------+-------------------------+---------+--------------+
| **Data type** | Byte | Unsigned 4 byte integer | Unsigned 1 byte integer | Unsigned 4 byte integer | Byte | Byte |
+-------------------+----------------+-----------------------------------------------+-------------------------------+-------------------------+---------+--------------+
| **Byte order** | \- | Little-Endian | Little-Endian | Little-Endian | \- | \- |
+-------------------+----------------+-----------------------------------------------+-------------------------------+-------------------------+---------+--------------+
| **Description** | Must be 0xAA | Usually s, ms or µs since start of the device | Length in byte of the payload | \- | \- | Must be 0xBB |
+-------------------+----------------+-----------------------------------------------+-------------------------------+-------------------------+---------+--------------+
Examples of serial frames
^^^^^^^^^^^^^^^^^^^^^^^^^
.. rubric:: CAN message with 8 byte payload
+----------------+-----------------------------------------+
| CAN message |
+----------------+-----------------------------------------+
| Arbitration ID | Payload |
+================+=========================================+
| 1 | 0x11 0x22 0x33 0x44 0x55 0x66 0x77 0x88 |
+----------------+-----------------------------------------+
+----------------+---------------------+------+---------------------+-----------------------------------------+--------------+
| Serial frame |
+----------------+---------------------+------+---------------------+-----------------------------------------+--------------+
| Start of frame | Timestamp | DLC | Arbitration ID | Payload | End of frame |
+================+=====================+======+=====================+=========================================+==============+
| 0xAA | 0x66 0x73 0x00 0x00 | 0x08 | 0x01 0x00 0x00 0x00 | 0x11 0x22 0x33 0x44 0x55 0x66 0x77 0x88 | 0xBB |
+----------------+---------------------+------+---------------------+-----------------------------------------+--------------+
.. rubric:: CAN message with 1 byte payload
+----------------+---------+
| CAN message |
+----------------+---------+
| Arbitration ID | Payload |
+================+=========+
| 1 | 0x11 |
+----------------+---------+
+----------------+---------------------+------+---------------------+---------+--------------+
| Serial frame |
+----------------+---------------------+------+---------------------+---------+--------------+
| Start of frame | Timestamp | DLC | Arbitration ID | Payload | End of frame |
+================+=====================+======+=====================+=========+==============+
| 0xAA | 0x66 0x73 0x00 0x00 | 0x01 | 0x01 0x00 0x00 0x00 | 0x11 | 0xBB |
+----------------+---------------------+------+---------------------+---------+--------------+
.. rubric:: CAN message with 0 byte payload
+----------------+---------+
| CAN message |
+----------------+---------+
| Arbitration ID | Payload |
+================+=========+
| 1 | None |
+----------------+---------+
+----------------+---------------------+------+---------------------+--------------+
| Serial frame |
+----------------+---------------------+------+---------------------+--------------+
| Start of frame | Timestamp | DLC | Arbitration ID | End of frame |
+================+=====================+======+=====================+==============+
| 0xAA | 0x66 0x73 0x00 0x00 | 0x00 | 0x01 0x00 0x00 0x00 | 0xBB |
+----------------+---------------------+------+---------------------+--------------+
.. rubric:: Extended Frame CAN message with 0 byte payload with an 29-bit CAN ID
+----------------+---------+
| CAN message |
+----------------+---------+
| Arbitration ID | Payload |
+================+=========+
| 0x80000001 (1) | None |
+----------------+---------+
+----------------+---------------------+------+---------------------+--------------+
| Serial frame |
+----------------+---------------------+------+---------------------+--------------+
| Start of frame | Timestamp | DLC | Arbitration ID | End of frame |
+================+=====================+======+=====================+==============+
| 0xAA | 0x66 0x73 0x00 0x00 | 0x00 | 0x01 0x00 0x00 0x80 | 0xBB |
+----------------+---------------------+------+---------------------+--------------+
|