diff options
author | Josh Blum <josh@joshknows.com> | 2011-07-28 10:50:23 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2011-07-28 10:50:23 -0700 |
commit | 8925263f50170f1ca7d273aeae777aee75e19e6d (patch) | |
tree | 6ba6921c88fa02d26a0867ed5a9445fbfa3ae15c /usrp2 | |
parent | b23ac38dabe54145b385c50a1f4afa16c0dc3b15 (diff) | |
download | uhd-8925263f50170f1ca7d273aeae777aee75e19e6d.tar.gz uhd-8925263f50170f1ca7d273aeae777aee75e19e6d.tar.bz2 uhd-8925263f50170f1ca7d273aeae777aee75e19e6d.zip |
time64: reverted mimo sync changes to time64
Diffstat (limited to 'usrp2')
-rw-r--r-- | usrp2/timing/time_64bit.v | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usrp2/timing/time_64bit.v b/usrp2/timing/time_64bit.v index 4fefcc488..8c9090a35 100644 --- a/usrp2/timing/time_64bit.v +++ b/usrp2/timing/time_64bit.v @@ -161,9 +161,7 @@ module time_64bit assign mimo_secs = vita_time_rcvd[63:32]; assign mimo_ticks = vita_time_rcvd[31:0] + {16'd0,sync_delay}; - //assign mimo_sync_now = mimo_sync & sync_rcvd & (mimo_ticks <= TICKS_PER_SEC); - // for timing purposes, assume sync_delay less than 10k - assign mimo_sync_now = mimo_sync & sync_rcvd & (vita_time_rcvd <= (TICKS_PER_SEC-10000)); + assign mimo_sync_now = mimo_sync & sync_rcvd & (mimo_ticks <= TICKS_PER_SEC); assign debug = { { 24'b0} , { 2'b0, exp_time_in, exp_time_out, mimo_sync, mimo_sync_now, sync_rcvd, send_sync} }; |