can327.rst 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331
  1. .. SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
  2. can327: ELM327 driver for Linux SocketCAN
  3. ==========================================
  4. Authors
  5. --------
  6. Max Staudt <max@enpas.org>
  7. Motivation
  8. -----------
  9. This driver aims to lower the initial cost for hackers interested in
  10. working with CAN buses.
  11. CAN adapters are expensive, few, and far between.
  12. ELM327 interfaces are cheap and plentiful.
  13. Let's use ELM327s as CAN adapters.
  14. Introduction
  15. -------------
  16. This driver is an effort to turn abundant ELM327 based OBD interfaces
  17. into full fledged (as far as possible) CAN interfaces.
  18. Since the ELM327 was never meant to be a stand alone CAN controller,
  19. the driver has to switch between its modes as quickly as possible in
  20. order to fake full-duplex operation.
  21. As such, can327 is a best effort driver. However, this is more than
  22. enough to implement simple request-response protocols (such as OBD II),
  23. and to monitor broadcast messages on a bus (such as in a vehicle).
  24. Most ELM327s come as nondescript serial devices, attached via USB or
  25. Bluetooth. The driver cannot recognize them by itself, and as such it
  26. is up to the user to attach it in form of a TTY line discipline
  27. (similar to PPP, SLIP, slcan, ...).
  28. This driver is meant for ELM327 versions 1.4b and up, see below for
  29. known limitations in older controllers and clones.
  30. Data sheet
  31. -----------
  32. The official data sheets can be found at ELM electronics' home page:
  33. https://www.elmelectronics.com/
  34. How to attach the line discipline
  35. ----------------------------------
  36. Every ELM327 chip is factory programmed to operate at a serial setting
  37. of 38400 baud/s, 8 data bits, no parity, 1 stopbit.
  38. If you have kept this default configuration, the line discipline can
  39. be attached on a command prompt as follows::
  40. sudo ldattach \
  41. --debug \
  42. --speed 38400 \
  43. --eightbits \
  44. --noparity \
  45. --onestopbit \
  46. --iflag -ICRNL,INLCR,-IXOFF \
  47. 30 \
  48. /dev/ttyUSB0
  49. To change the ELM327's serial settings, please refer to its data
  50. sheet. This needs to be done before attaching the line discipline.
  51. Once the ldisc is attached, the CAN interface starts out unconfigured.
  52. Set the speed before starting it::
  53. # The interface needs to be down to change parameters
  54. sudo ip link set can0 down
  55. sudo ip link set can0 type can bitrate 500000
  56. sudo ip link set can0 up
  57. 500000 bit/s is a common rate for OBD-II diagnostics.
  58. If you're connecting straight to a car's OBD port, this is the speed
  59. that most cars (but not all!) expect.
  60. After this, you can set out as usual with candump, cansniffer, etc.
  61. How to check the controller version
  62. ------------------------------------
  63. Use a terminal program to attach to the controller.
  64. After issuing the "``AT WS``" command, the controller will respond with
  65. its version::
  66. >AT WS
  67. ELM327 v1.4b
  68. >
  69. Note that clones may claim to be any version they like.
  70. It is not indicative of their actual feature set.
  71. Communication example
  72. ----------------------
  73. This is a short and incomplete introduction on how to talk to an ELM327.
  74. It is here to guide understanding of the controller's and the driver's
  75. limitation (listed below) as well as manual testing.
  76. The ELM327 has two modes:
  77. - Command mode
  78. - Reception mode
  79. In command mode, it expects one command per line, terminated by CR.
  80. By default, the prompt is a "``>``", after which a command can be
  81. entered::
  82. >ATE1
  83. OK
  84. >
  85. The init script in the driver switches off several configuration options
  86. that are only meaningful in the original OBD scenario the chip is meant
  87. for, and are actually a hindrance for can327.
  88. When a command is not recognized, such as by an older version of the
  89. ELM327, a question mark is printed as a response instead of OK::
  90. >ATUNKNOWN
  91. ?
  92. >
  93. At present, can327 does not evaluate this response. See the section
  94. below on known limitations for details.
  95. When a CAN frame is to be sent, the target address is configured, after
  96. which the frame is sent as a command that consists of the data's hex
  97. dump::
  98. >ATSH123
  99. OK
  100. >DEADBEEF12345678
  101. OK
  102. >
  103. The above interaction sends the SFF frame "``DE AD BE EF 12 34 56 78``"
  104. with (11 bit) CAN ID ``0x123``.
  105. For this to function, the controller must be configured for SFF sending
  106. mode (using "``AT PB``", see code or datasheet).
  107. Once a frame has been sent and wait-for-reply mode is on (``ATR1``,
  108. configured on ``listen-only=off``), or when the reply timeout expires
  109. and the driver sets the controller into monitoring mode (``ATMA``),
  110. the ELM327 will send one line for each received CAN frame, consisting
  111. of CAN ID, DLC, and data::
  112. 123 8 DEADBEEF12345678
  113. For EFF (29 bit) CAN frames, the address format is slightly different,
  114. which can327 uses to tell the two apart::
  115. 12 34 56 78 8 DEADBEEF12345678
  116. The ELM327 will receive both SFF and EFF frames - the current CAN
  117. config (``ATPB``) does not matter.
  118. If the ELM327's internal UART sending buffer runs full, it will abort
  119. the monitoring mode, print "BUFFER FULL" and drop back into command
  120. mode. Note that in this case, unlike with other error messages, the
  121. error message may appear on the same line as the last (usually
  122. incomplete) data frame::
  123. 12 34 56 78 8 DEADBEEF123 BUFFER FULL
  124. Known limitations of the controller
  125. ------------------------------------
  126. - Clone devices ("v1.5" and others)
  127. Sending RTR frames is not supported and will be dropped silently.
  128. Receiving RTR with DLC 8 will appear to be a regular frame with
  129. the last received frame's DLC and payload.
  130. "``AT CSM``" (CAN Silent Monitoring, i.e. don't send CAN ACKs) is
  131. not supported, and is hard coded to ON. Thus, frames are not ACKed
  132. while listening: "``AT MA``" (Monitor All) will always be "silent".
  133. However, immediately after sending a frame, the ELM327 will be in
  134. "receive reply" mode, in which it *does* ACK any received frames.
  135. Once the bus goes silent, or an error occurs (such as BUFFER FULL),
  136. or the receive reply timeout runs out, the ELM327 will end reply
  137. reception mode on its own and can327 will fall back to "``AT MA``"
  138. in order to keep monitoring the bus.
  139. Other limitations may apply, depending on the clone and the quality
  140. of its firmware.
  141. - All versions
  142. No full duplex operation is supported. The driver will switch
  143. between input/output mode as quickly as possible.
  144. The length of outgoing RTR frames cannot be set. In fact, some
  145. clones (tested with one identifying as "``v1.5``") are unable to
  146. send RTR frames at all.
  147. We don't have a way to get real-time notifications on CAN errors.
  148. While there is a command (``AT CS``) to retrieve some basic stats,
  149. we don't poll it as it would force us to interrupt reception mode.
  150. - Versions prior to 1.4b
  151. These versions do not send CAN ACKs when in monitoring mode (AT MA).
  152. However, they do send ACKs while waiting for a reply immediately
  153. after sending a frame. The driver maximizes this time to make the
  154. controller as useful as possible.
  155. Starting with version 1.4b, the ELM327 supports the "``AT CSM``"
  156. command, and the "listen-only" CAN option will take effect.
  157. - Versions prior to 1.4
  158. These chips do not support the "``AT PB``" command, and thus cannot
  159. change bitrate or SFF/EFF mode on-the-fly. This will have to be
  160. programmed by the user before attaching the line discipline. See the
  161. data sheet for details.
  162. - Versions prior to 1.3
  163. These chips cannot be used at all with can327. They do not support
  164. the "``AT D1``" command, which is necessary to avoid parsing conflicts
  165. on incoming data, as well as distinction of RTR frame lengths.
  166. Specifically, this allows for easy distinction of SFF and EFF
  167. frames, and to check whether frames are complete. While it is possible
  168. to deduce the type and length from the length of the line the ELM327
  169. sends us, this method fails when the ELM327's UART output buffer
  170. overruns. It may abort sending in the middle of the line, which will
  171. then be mistaken for something else.
  172. Known limitations of the driver
  173. --------------------------------
  174. - No 8/7 timing.
  175. ELM327 can only set CAN bitrates that are of the form 500000/n, where
  176. n is an integer divisor.
  177. However there is an exception: With a separate flag, it may set the
  178. speed to be 8/7 of the speed indicated by the divisor.
  179. This mode is not currently implemented.
  180. - No evaluation of command responses.
  181. The ELM327 will reply with OK when a command is understood, and with ?
  182. when it is not. The driver does not currently check this, and simply
  183. assumes that the chip understands every command.
  184. The driver is built such that functionality degrades gracefully
  185. nevertheless. See the section on known limitations of the controller.
  186. - No use of hardware CAN ID filtering
  187. An ELM327's UART sending buffer will easily overflow on heavy CAN bus
  188. load, resulting in the "``BUFFER FULL``" message. Using the hardware
  189. filters available through "``AT CF xxx``" and "``AT CM xxx``" would be
  190. helpful here, however SocketCAN does not currently provide a facility
  191. to make use of such hardware features.
  192. Rationale behind the chosen configuration
  193. ------------------------------------------
  194. ``AT E1``
  195. Echo on
  196. We need this to be able to get a prompt reliably.
  197. ``AT S1``
  198. Spaces on
  199. We need this to distinguish 11/29 bit CAN addresses received.
  200. Note:
  201. We can usually do this using the line length (odd/even),
  202. but this fails if the line is not transmitted fully to
  203. the host (BUFFER FULL).
  204. ``AT D1``
  205. DLC on
  206. We need this to tell the "length" of RTR frames.
  207. A note on CAN bus termination
  208. ------------------------------
  209. Your adapter may have resistors soldered in which are meant to terminate
  210. the bus. This is correct when it is plugged into a OBD-II socket, but
  211. not helpful when trying to tap into the middle of an existing CAN bus.
  212. If communications don't work with the adapter connected, check for the
  213. termination resistors on its PCB and try removing them.