diff options
author | Matt Ettus <matt@ettus.com> | 2010-12-10 10:49:59 -0800 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2010-12-10 10:49:59 -0800 |
commit | c97440838aa740fc335c59914f6dfd6f492b69f8 (patch) | |
tree | cf9dd72e607cf3fc0b63603d17b9f777e8340df4 /usrp2/top | |
parent | 003df1ee96234f92c17f6c5f19c3c7e0a72490e9 (diff) | |
download | uhd-c97440838aa740fc335c59914f6dfd6f492b69f8.tar.gz uhd-c97440838aa740fc335c59914f6dfd6f492b69f8.tar.bz2 uhd-c97440838aa740fc335c59914f6dfd6f492b69f8.zip |
time sync on usrp2 as well, added debug pins to time sync.
Diffstat (limited to 'usrp2/top')
-rw-r--r-- | usrp2/top/u2_rev3/u2_core.v | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usrp2/top/u2_rev3/u2_core.v b/usrp2/top/u2_rev3/u2_core.v index c2d473650..30b47b818 100644 --- a/usrp2/top/u2_rev3/u2_core.v +++ b/usrp2/top/u2_rev3/u2_core.v @@ -720,9 +720,13 @@ module u2_core // ///////////////////////////////////////////////////////////////////////// // VITA Timing + wire [31:0] debug_sync; + 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(debug_sync)); // ///////////////////////////////////////////////////////////////////////////////////////// // Debug Pins |