diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2020-12-12 16:26:25 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2020-12-12 16:26:25 +0100 |
commit | 58e264d8ba706f8b8f9fdba6f0256efc21702394 (patch) | |
tree | 7b2555af8cbd9fc950a867aa1b42a8895241b768 | |
parent | a2d708de0815cc207ca61b12ae558fa4cf5f4f8f (diff) | |
download | dabmod-58e264d8ba706f8b8f9fdba6f0256efc21702394.tar.gz dabmod-58e264d8ba706f8b8f9fdba6f0256efc21702394.tar.bz2 dabmod-58e264d8ba706f8b8f9fdba6f0256efc21702394.zip |
Revert "Handle pps_src external in USRPTime ctor"
verify_time doesn't handle the external PPS input!
This reverts commit 6c02271b0050dbb2808bb55272b438576d937d4a.
-rw-r--r-- | src/output/USRPTime.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/output/USRPTime.cpp b/src/output/USRPTime.cpp index 5f9014c..232fa58 100644 --- a/src/output/USRPTime.cpp +++ b/src/output/USRPTime.cpp @@ -55,9 +55,7 @@ USRPTime::USRPTime( set_usrp_time_from_localtime(); } - else if (m_conf.pps_src == "pps" or m_conf.pps_src == "external") { - /* Not sure if pps was previously accepted by UHD, or if that was wrong. - * The B100 and B200 use 'external'. */ + else if (m_conf.pps_src == "pps") { // let verify_time handle time setup } else if (m_conf.pps_src == "gpsdo") { |