diff options
author | Jason McIntyre <jmc@cvs.openbsd.org> | 2006-07-09 09:03:20 +0000 |
---|---|---|
committer | Jason McIntyre <jmc@cvs.openbsd.org> | 2006-07-09 09:03:20 +0000 |
commit | 756506e0197e4d908cd3200cf9d46d3034a2eeff (patch) | |
tree | c108b43dc1adaef9c392e006b1be5a77d06ea623 /sbin | |
parent | 763f836d122f02cdbbdd0f2d5b637d0b249291a5 (diff) |
various fixes up;
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/nmeaattach/nmeaattach.8 | 15 | ||||
-rw-r--r-- | sbin/nmeaattach/nmeaattach.c | 4 |
2 files changed, 11 insertions, 8 deletions
diff --git a/sbin/nmeaattach/nmeaattach.8 b/sbin/nmeaattach/nmeaattach.8 index a8f4a64c6dc..c5f74eab688 100644 --- a/sbin/nmeaattach/nmeaattach.8 +++ b/sbin/nmeaattach/nmeaattach.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: nmeaattach.8,v 1.1 2006/07/04 05:31:54 mbalmer Exp $ +.\" $OpenBSD: nmeaattach.8,v 1.2 2006/07/09 09:03:19 jmc Exp $ .\" .\" Copyright (c) 2006 Marc Balmer <mbalmer@openbsd.org> .\" @@ -24,10 +24,11 @@ .Nm nmeaattach .Op Fl dhm .Op Fl s Ar baudrate +.Op Fl t Ar cond .Ar device .Sh DESCRIPTION .Nm -is used to designate a serial line with a NMEA 0183 device as a source of +is used to designate a serial line with an NMEA 0183 device as a source of timedelta sensors. The following operands are supported by .Nm nmeaattach : @@ -47,7 +48,8 @@ If not specified, the default of 4800 baud is used. Chooses the condition which will cause the current system time to be immediately copied to the terminal timestamp storage. Only one can be used. -.Bl -tag -width DCDXX +.Pp +.Bl -tag -width DCDXX -offset indent -compact .It dcd Copy the timestamp when DCD is asserted. .It !dcd @@ -60,8 +62,9 @@ Copy the timestamp when CTS is deasserted. .Pp If no condition is specified, the .Xr nmea 4 -line discipline will timestamp on receiving the leading '$' character -of each GPRMC sentence. +line discipline will timestamp on receiving the leading +.Sq $ +character of each GPRMC sentence. .It Ar device Specifies the name of the serial line. .Ar device @@ -82,5 +85,5 @@ process. .Sh HISTORY The .Nm -command appeared in +command first appeared in .Ox 4.0 . diff --git a/sbin/nmeaattach/nmeaattach.c b/sbin/nmeaattach/nmeaattach.c index 7acd46fca14..c83e86f4408 100644 --- a/sbin/nmeaattach/nmeaattach.c +++ b/sbin/nmeaattach/nmeaattach.c @@ -1,4 +1,4 @@ -/* $OpenBSD: nmeaattach.c,v 1.1 2006/07/04 05:31:54 mbalmer Exp $ */ +/* $OpenBSD: nmeaattach.c,v 1.2 2006/07/09 09:03:19 jmc Exp $ */ /* * Copyright (c) 1988, 1993 * The Regents of the University of California. All rights reserved. @@ -68,7 +68,7 @@ usage(void) { extern char *__progname; - fprintf(stderr, "usage: %s [-dhm] [-s speed] [-t cond] device\n", + fprintf(stderr, "usage: %s [-dhm] [-s baudrate] [-t cond] device\n", __progname); exit(1); } |