diff options
author | Josh Blum <josh@joshknows.com> | 2011-01-11 18:07:27 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-01-11 18:07:27 -0800 |
commit | 6c03f7e74bf7fcbfbcbc02de89aac9550097afc9 (patch) | |
tree | 4bff059da9a46625b6146c90f00419411431c210 /host/lib/usrp/usrp_e100/mboard_impl.cpp | |
parent | ec2ca70abe3a1e2a13d2085e3ec3af9f44a3eeae (diff) | |
download | uhd-6c03f7e74bf7fcbfbcbc02de89aac9550097afc9.tar.gz uhd-6c03f7e74bf7fcbfbcbc02de89aac9550097afc9.tar.bz2 uhd-6c03f7e74bf7fcbfbcbc02de89aac9550097afc9.zip |
uhd: use internal() to default clock configs, dont use PPS_INT, theres no such thing
Diffstat (limited to 'host/lib/usrp/usrp_e100/mboard_impl.cpp')
-rw-r--r-- | host/lib/usrp/usrp_e100/mboard_impl.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/host/lib/usrp/usrp_e100/mboard_impl.cpp b/host/lib/usrp/usrp_e100/mboard_impl.cpp index c056bf3ea..51625ed54 100644 --- a/host/lib/usrp/usrp_e100/mboard_impl.cpp +++ b/host/lib/usrp/usrp_e100/mboard_impl.cpp @@ -37,10 +37,7 @@ void usrp_e100_impl::mboard_init(void){ ); //init the clock config - _clock_config.ref_source = clock_config_t::REF_AUTO; - _clock_config.pps_source = clock_config_t::PPS_SMA; - _clock_config.pps_polarity = clock_config_t::PPS_NEG; - + _clock_config = clock_config_t::internal(); update_clock_config(); } |