diff options
author | Josh Blum <josh@joshknows.com> | 2011-08-10 07:29:42 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-08-10 07:30:55 -0700 |
commit | 8444c6a8354c3c2de283c64897241798d031abe3 (patch) | |
tree | 5567a8e8beafe08ed37b0e5b9342387281f069ee /host | |
parent | a2ff19e38282e8ad641b9bbabbb07af315864548 (diff) | |
download | uhd-8444c6a8354c3c2de283c64897241798d031abe3.tar.gz uhd-8444c6a8354c3c2de283c64897241798d031abe3.tar.bz2 uhd-8444c6a8354c3c2de283c64897241798d031abe3.zip |
uhd: fix sync docs typo for pps detect method1
Diffstat (limited to 'host')
-rw-r--r-- | host/docs/sync.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/host/docs/sync.rst b/host/docs/sync.rst index 3cb13fbf3..fe37a66dd 100644 --- a/host/docs/sync.rst +++ b/host/docs/sync.rst @@ -78,7 +78,7 @@ When the last PPS time increments, the user can determine that a PPS has occurre :: const uhd::time_spec_t last_pps_time = usrp->get_time_last_pps(); - while (last_pps_time != usrp->get_time_last_pps()){ + while (last_pps_time == usrp->get_time_last_pps()){ //sleep 100 milliseconds (give or take) } usrp->set_time_next_pps(uhd::time_spec_t(0.0)); |