summaryrefslogtreecommitdiff
path: root/monitor_ubx.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2013-11-03 01:45:44 -0400
committerEric S. Raymond <esr@thyrsus.com>2013-11-03 01:45:44 -0400
commit54afc3c3e6394a6e6c42b4211d9c5f7d2908e547 (patch)
tree8ea67c29ce23567e34bded0310ce662291fc100d /monitor_ubx.c
parent8ae62fb2d65b18365a686a22a540b3f46ddfc20a (diff)
downloadgpsd-54afc3c3e6394a6e6c42b4211d9c5f7d2908e547.tar.gz
Show PPS offset in the NMEA monitor.
Diffstat (limited to 'monitor_ubx.c')
-rw-r--r--monitor_ubx.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/monitor_ubx.c b/monitor_ubx.c
index 9300b92d..9dc929ca 100644
--- a/monitor_ubx.c
+++ b/monitor_ubx.c
@@ -74,7 +74,7 @@ static bool ubx_initialize(void)
(void)wborder(ppswin, 0, 0, 0, 0, 0, 0, 0, 0);
(void)wattrset(ppswin, A_BOLD);
(void)wmove(ppswin, 1, 1);
- (void)wprintw(ppswin, "DELTA: ");
+ (void)wprintw(ppswin, "PPS offset: ");
display(ppswin, 2, 22, " PPS ");
(void)wattrset(ppswin, A_NORMAL);
@@ -240,7 +240,7 @@ static void ubx_update(void)
}
if (timedelta != 0)
- (void)mvwprintw(ppswin, 1, 8, "%f", timedelta);
+ (void)mvwprintw(ppswin, 1, 13, "%f", timedelta);
}
static int ubx_command(char line[]UNUSED)