Awesome
ESP32-OpenLIN
open-LIN/open-LIN-c implementation in ESP32.
Introduction
This project implements hardware abstraction APIs of open-LIN-c
in ESP32 based on CW-B-W/ESP32-SoftwareLIN.
Besides of the implementation, there are simple examples to illustrate how to use open-LIN-c
.
Features
- Send / Receive LIN bus frames on both LIN master and LIN slave
- Autobaud detection is supported by LIN slave
Quick start guide
- Use VS Code with extension PlatformIO to open the project folder
- Build and upload the ESP32 firmware with PlatformIO
- If this device is acting as a LIN master, copy the
examples/master.cpp
tosrc/
- If this device is acting as a LIN slave, copy the
examples/slave.cpp
tosrc/
- If this device is acting as a LIN master, copy the
- Connect the UART pins of the ESP32 LIN master and ESP32 LIN slave
How to use
To send periodic frames
On Master
In examples/master.cpp
, master_frame_table
is used to store the periodic frames information. open-LIN-c
keeps iterating through the table and send each frame itme.
Refer to https://github.com/CW-B-W/ESP32-openLIN/blob/677470aaf2609fb12ef86f3ba0c760aa747735f0/examples/master.cpp#L44-L47
On Slave
In examples/master.cpp
, frame_slot
is used to store the periodic frames information.
When a framed is received, open-LIN-c
searches the received frame PID in the frame_slot
and return the frame information if found.
Refer to https://github.com/CW-B-W/ESP32-openLIN/blob/677470aaf2609fb12ef86f3ba0c760aa747735f0/examples/slave.cpp#L54-L57
Modify handlers
Master on received frame handler
In examples/master.cpp
, function open_lin_master_dl_rx_callback
is used to handle the frames received. Refer to https://github.com/CW-B-W/ESP32-openLIN/blob/677470aaf2609fb12ef86f3ba0c760aa747735f0/examples/master.cpp#L84-L91
Master on error handler
In examples/master.cpp
, function open_lin_error_handler
is used to handle the errors. Refer to https://github.com/CW-B-W/ESP32-openLIN/blob/677470aaf2609fb12ef86f3ba0c760aa747735f0/examples/master.cpp#L93-L153
Slave on received frame handler
In examples/slave.cpp
, function open_lin_on_rx_frame
is used to handle the frames received. Refer to https://github.com/CW-B-W/ESP32-openLIN/blob/677470aaf2609fb12ef86f3ba0c760aa747735f0/examples/slave.cpp#L115-L122
Slave on error handler
In examples/slave.cpp
, function open_lin_error_handler
is used to handle the errors. Refer to https://github.com/CW-B-W/ESP32-openLIN/blob/677470aaf2609fb12ef86f3ba0c760aa747735f0/examples/slave.cpp#L124-L185
Enable/Disable autobaud for LIN slave
In examples/slave.cpp
, if LIN_AUTOBAUD
is defined, autobaud is enabled, otherwise autobaud is disabled. Refer to https://github.com/CW-B-W/ESP32-openLIN/blob/677470aaf2609fb12ef86f3ba0c760aa747735f0/examples/slave.cpp#L35
Testing - Microchip LIN Serial Analyzer
This project was tested with Microchip LIN Serial Analyzer and NXP TJA1021 module.
(Sleep was not used in this test)
Connection
ESP32 as Master, LIN Analyzer as Slave
Setup
- Use
examples/master.cpp
to do this test. - Open LIN Serial Analyzer Debug Tool
- Hold ESP32 reset button (Don't release now)
- Connect Debug Tool with
LIN Serial Analyzer
- Choose to use Enhanced Checksum Type in Debug Tool
- Setup Slave Response in Debug Tool
- Select the responses and click
Add Slave Response Buffer
- Release ESP32 reset button
- LIN frames should be detected and shown on the screen
Result
<img width="75%" src="https://github.com/CW-B-W/ESP32-openLIN/assets/76680670/4d62c92f-fe68-4224-aa7c-221c1020bcaa"></img>
Compared with the result in logic analyzer
ESP32 as Slave, LIN Analyzer as Master
Setup
- Use
examples/slave.cpp
to do this test. - Open LIN Serial Analyzer Debug Tool
- Connect Debug Tool with
LIN Serial Analyzer
- Choose to use Enhanced Checksum Type in Debug Tool
- Setup Master frames in Debug Tool
- Select the two frames and click
Send Continuous
- LIN frames should be detected and shown on the screen
Result
<img width="75%" src="https://github.com/CW-B-W/ESP32-openLIN/assets/76680670/1d270cab-7424-4662-8f48-2380c32b4007"></img>
Compared with the result in logic analyzer
Testing - Vector VN1611
This project was also tested with VN1611.
We can take advantages of Vector XL Driver Library to test it with VN1611.