diff options
author | Michael West <michael.west@ettus.com> | 2020-03-15 01:04:02 -0700 |
---|---|---|
committer | Aaron Rossetto <aaron.rossetto@ni.com> | 2020-05-12 12:03:31 -0500 |
commit | 7886b71f13e9f6e5786c95286ef98f49ab716119 (patch) | |
tree | b4226da756c3067a184d1d53a6270c097a1c0095 /fpga/usrp3/top | |
parent | 91378ee07f4c466e3a3836ddb0c2f59d8710d112 (diff) | |
download | uhd-7886b71f13e9f6e5786c95286ef98f49ab716119.tar.gz uhd-7886b71f13e9f6e5786c95286ef98f49ab716119.tar.bz2 uhd-7886b71f13e9f6e5786c95286ef98f49ab716119.zip |
X300: Make VITA time monotonic
Make timekeeper tick on every cycle of the radio clock.
Signed-off-by: Michael West <michael.west@ettus.com>
Diffstat (limited to 'fpga/usrp3/top')
-rw-r--r-- | fpga/usrp3/top/x300/bus_int.v | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fpga/usrp3/top/x300/bus_int.v b/fpga/usrp3/top/x300/bus_int.v index 92bea5d84..07446ad16 100644 --- a/fpga/usrp3/top/x300/bus_int.v +++ b/fpga/usrp3/top/x300/bus_int.v @@ -1,7 +1,7 @@ // // Copyright 2013 Ettus Research LLC // Copyright 2017 Ettus Research, a National Instruments Company -// Copyright 2019 Ettus Research, a National Instruments Brand +// Copyright 2019-2020 Ettus Research, a National Instruments Brand // // SPDX-License-Identifier: LGPL-3.0-or-later // @@ -508,7 +508,7 @@ module bus_int #( .s_ctrlport_req_data (set_data), .s_ctrlport_resp_ack (), .s_ctrlport_resp_data (), - .sample_rx_stb (radio_rx_stb[0]), + .sample_rx_stb (1'b1), .pps (pps), .tb_timestamp (radio_time_tb), .tb_timestamp_last_pps (radio_time_last_pps_tb), |