summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorChristian Muck <christian.muck@bmw.de>2012-01-30 14:28:43 +0100
committerChristian Muck <christian.muck@bmw.de>2012-01-30 14:28:43 +0100
commit81195a51e638b9cb6689dd06a578dbd691022b12 (patch)
tree8a82bdae8a9bf4c9fdd594f67c30bfa6f19e586b /doc
parent7348250fccdabfd4762dbae90637373f6585f4eb (diff)
downloadDLT-daemon-81195a51e638b9cb6689dd06a578dbd691022b12.tar.gz
Updat of dlt-convert and dlt-receive man pages
Diffstat (limited to 'doc')
-rw-r--r--doc/dlt-convert.19
-rw-r--r--doc/dlt-receive.117
2 files changed, 18 insertions, 8 deletions
diff --git a/doc/dlt-convert.1 b/doc/dlt-convert.1
index 42a8a9d..052b908 100644
--- a/doc/dlt-convert.1
+++ b/doc/dlt-convert.1
@@ -50,9 +50,14 @@ Convert DLT file into ASCII:
\-a mylog.dlt
.PP
.TP
-Join two log files:
+Cut a specific range, e.g. from message 1 to message 3 from a file called log.dlt and store the result to a file called newlog.dlt:
.B dlt-convert
-\-o newlog.dlt mylog1.dlt mylog2.dlt
+\-b 1 -e 3 -o newlog.dlt log.dlt
+.PP
+.TP
+Paste two dlt files log1.dlt and log2.dlt to a new file called newlog.dlt:
+.B dlt-convert
+\-o newlog.dlt log1.dlt log2.dlt
.PP
.SH EXIT STATUS
Non zero is returned in case of failure.
diff --git a/doc/dlt-receive.1 b/doc/dlt-receive.1
index 0e47f55..de3d6f9 100644
--- a/doc/dlt-receive.1
+++ b/doc/dlt-receive.1
@@ -40,14 +40,19 @@ Serial device baudrate (Default: 115200).
Set ECU ID (Default: RECV).
.SH EXAMPLES
.TP
-Convert DLT file into ASCII:
-.B dlt-convert
-\-a mylog.dlt
+Print received message headers received from a dlt-daemon running on localhost:
+.B dlt-receive
+\-s localhost
.PP
.TP
-Join two log files:
-.B dlt-convert
-\-o newlog.dlt mylog1.dlt mylog2.dlt
+Print received message headers received from a serila interface:
+.B dlt-receive
+\-s -y /dev/ttySO
+.PP
+.TP
+Store received message headers from a dlt-daemon to a log file called log.dlt and filter them for e.g. Application ID ABCD and Context ID EFGH (Write:ABCD EFGH as single line to a file claled filter.txt):
+.B dlt-receive
+\-s -o log.dlt -f filter.txt localhost
.PP
.SH EXIT STATUS
Non zero is returned in case of failure.