diff options
author | Josh Blum <josh@joshknows.com> | 2012-02-06 16:40:17 -0800 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2012-02-06 16:40:17 -0800 |
commit | 34db74740704ce2de2a71447b3d202e9c4be800b (patch) | |
tree | 1472c28cedc05e8f3e0a89486cb0b3928af689b0 /usrp2/vrt/vita_tx_control.v | |
parent | 947d0ffabc72b1f74ff4507df12b6bf2a021dc3b (diff) | |
download | uhd-34db74740704ce2de2a71447b3d202e9c4be800b.tar.gz uhd-34db74740704ce2de2a71447b3d202e9c4be800b.tar.bz2 uhd-34db74740704ce2de2a71447b3d202e9c4be800b.zip |
dsp rework: implement 64 bit ticks no seconds
Diffstat (limited to 'usrp2/vrt/vita_tx_control.v')
-rw-r--r-- | usrp2/vrt/vita_tx_control.v | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usrp2/vrt/vita_tx_control.v b/usrp2/vrt/vita_tx_control.v index eaaf61815..c3ce2b96a 100644 --- a/usrp2/vrt/vita_tx_control.v +++ b/usrp2/vrt/vita_tx_control.v @@ -50,11 +50,9 @@ module vita_tx_control wire now, early, late, too_early; - // FIXME ignore too_early for now for timing reasons - assign too_early = 0; time_compare time_compare (.time_now(vita_time), .trigger_time(send_time), - .now(now), .early(early), .late(late), .too_early()); + .now(now), .early(early), .late(late), .too_early(too_early)); reg late_qual, late_del; |