From 917135694fad328f087302346f472779cbc28397 Mon Sep 17 00:00:00 2001 From: Roland Jax Date: Fri, 19 Dec 2014 20:58:59 +0100 Subject: [PATCH] ebusdfeed cosmetics. --- src/tools/ebusfeed.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/ebusfeed.cpp b/src/tools/ebusfeed.cpp index bac121bd..094e6cb1 100644 --- a/src/tools/ebusfeed.cpp +++ b/src/tools/ebusfeed.cpp @@ -36,7 +36,7 @@ void define_args() { A.setVersion("ebusfeed is part of """PACKAGE_STRING""); - A.addText(" 'ebusfeed' sends hex values from dump file to a local serial device (pts)\n\n" + A.addText(" 'ebusfeed' sends hex values from dump file to a pseudo terminal device (pty)\n\n" " Usage: 1. 'socat -d -d pty,raw,echo=0 pty,raw,echo=0'\n" " 2. create symbol links to appropriate devices\n" " for example: 'ln -s /dev/pts/2 /dev/ttyUSB60'\n" @@ -46,7 +46,7 @@ void define_args() "Options:\n"); A.addOption("device", "d", OptVal("/dev/ttyUSB60"), dt_string, ot_mandatory, - "virtual serial device (/dev/ttyUSB60)"); + "link on pseudo terminal device (/dev/ttyUSB60)"); A.addOption("time", "t", OptVal(10000), dt_long, ot_mandatory, "delay between 2 bytes in 'us' (10000)");