diff options
author | Matt Ettus <matt@ettus.com> | 2010-12-09 18:28:00 -0800 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-12-09 18:28:00 -0800 |
commit | 8fbedd86500a9d8603ec104369fc3afd833ea2ca (patch) | |
tree | abf3b94f349a03b709992f4fdaea88c58a2b33ed /usrp2/top | |
parent | 4b7e1098bcbc4577b56149f0d09abaf38797dc09 (diff) | |
download | uhd-8fbedd86500a9d8603ec104369fc3afd833ea2ca.tar.gz uhd-8fbedd86500a9d8603ec104369fc3afd833ea2ca.tar.bz2 uhd-8fbedd86500a9d8603ec104369fc3afd833ea2ca.zip |
reimplemented mimo time transfer to handle 64 bits. Still needs
to sync on the received side.
Diffstat (limited to 'usrp2/top')
-rw-r--r-- | usrp2/top/u2plus/u2plus_core.v | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usrp2/top/u2plus/u2plus_core.v b/usrp2/top/u2plus/u2plus_core.v index bce38fc73..4e0b190ef 100644 --- a/usrp2/top/u2plus/u2plus_core.v +++ b/usrp2/top/u2plus/u2plus_core.v @@ -683,7 +683,8 @@ module u2plus_core time_64bit #(.TICKS_PER_SEC(32'd100000000),.BASE(SR_TIME64)) time_64bit (.clk(dsp_clk), .rst(dsp_rst), .set_stb(set_stb_dsp), .set_addr(set_addr_dsp), .set_data(set_data_dsp), - .pps(pps_in), .vita_time(vita_time), .pps_int(pps_int)); + .pps(pps_in), .vita_time(vita_time), .pps_int(pps_int), + .exp_time_in(exp_time_in), .exp_time_out(exp_time_out)); // ///////////////////////////////////////////////////////////////////////////////////////// // Debug Pins |