Skip to content

Commit

Permalink
uart: add dumps for LIN
Browse files Browse the repository at this point in the history
  • Loading branch information
coon42 authored and uwehermann committed Oct 21, 2018
1 parent b2f5bb7 commit ce8fbd5
Show file tree
Hide file tree
Showing 6 changed files with 62 additions and 0 deletions.
62 changes: 62 additions & 0 deletions uart/lin/lin_generated/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
-------------------------------------------------------------------------------
LIN bus traffic
-------------------------------------------------------------------------------

Synthetically generated LIN bus traffic from a debugging session.

UART settings on LIN are always 19200/8n1, lsb-first; LIN protocol version: 2.


Logic analyzer setup
--------------------

The logic analyzer used was a DreamSourceLab DSLogic Plus (various samplerates):

Probe LIN
---------------
0 LIN-Bus


single_frame.sr
---------------

This shows one valid single LIN frame consisting of a header and a response
of 2 data bytes.

PID is 0xC1 -> ID: 0x01 Parity: 3
Data 1: 0x11
Data 2: 0x11
Checksum: 0x1C


lin_burst.sr
------------

10 valid LIN frames consisting of a header and a response of 3 data bytes each.
The frames are all sent at the highest possible load UART can handle.

PID is 0xA3 -> ID: 0x23 Parity: 2
Data 1: 0x11
Data 2: 0x22
Checksum: 0x29


lin_malformed.sr
----------------

Contains complete and incomplete LIN frames. Sometimes the PID is not sent
after the sync. The goal is testing the correct behaviour of the state machine
on protocol violations.


lin_malformed2.sr
-----------------

Same as lin_malformed.sr but more traffic.


lin_stress.sr
-------------

Different messages with different lengths and a changing bus load.
No protocol violations.
Binary file added uart/lin/lin_generated/burst.sr
Binary file not shown.
Binary file added uart/lin/lin_generated/malformed.sr
Binary file not shown.
Binary file added uart/lin/lin_generated/malformed2.sr
Binary file not shown.
Binary file added uart/lin/lin_generated/single_frame.sr
Binary file not shown.
Binary file added uart/lin/lin_generated/stress.sr
Binary file not shown.

0 comments on commit ce8fbd5

Please sign in to comment.