diff options
author | Wade Fife <wade.fife@ettus.com> | 2020-08-20 12:22:13 -0500 |
---|---|---|
committer | Wade Fife <wade.fife@ettus.com> | 2020-08-23 13:52:26 -0500 |
commit | db0d2dddcc5d8e39e2b7843a326ad9392bbb4c3f (patch) | |
tree | adc384fb0faf7be5bb949fe769400c6305c4eb8a /fpga/usrp3/lib/timing | |
parent | 1239c35ce632792cbae9a467d19e2f39cc0b5b4e (diff) | |
download | uhd-db0d2dddcc5d8e39e2b7843a326ad9392bbb4c3f.tar.gz uhd-db0d2dddcc5d8e39e2b7843a326ad9392bbb4c3f.tar.bz2 uhd-db0d2dddcc5d8e39e2b7843a326ad9392bbb4c3f.zip |
fpga: rfnoc: Remove deprecated files
Diffstat (limited to 'fpga/usrp3/lib/timing')
-rw-r--r-- | fpga/usrp3/lib/timing/Makefile.srcs | 2 | ||||
-rw-r--r-- | fpga/usrp3/lib/timing/timekeeper_legacy.v (renamed from fpga/usrp3/lib/timing/timekeeper.v) | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/fpga/usrp3/lib/timing/Makefile.srcs b/fpga/usrp3/lib/timing/Makefile.srcs index 8d116c064..88e907020 100644 --- a/fpga/usrp3/lib/timing/Makefile.srcs +++ b/fpga/usrp3/lib/timing/Makefile.srcs @@ -10,7 +10,7 @@ ################################################## TIMING_SRCS = $(abspath $(addprefix $(BASE_DIR)/../lib/timing/, \ time_compare.v \ -timekeeper.v \ +timekeeper_legacy.v \ pps_generator.v \ pps_synchronizer.v \ pulse_generator.v \ diff --git a/fpga/usrp3/lib/timing/timekeeper.v b/fpga/usrp3/lib/timing/timekeeper_legacy.v index 16b7f0fe6..62da52a18 100644 --- a/fpga/usrp3/lib/timing/timekeeper.v +++ b/fpga/usrp3/lib/timing/timekeeper_legacy.v @@ -6,7 +6,7 @@ // -module timekeeper +module timekeeper_legacy #(parameter SR_TIME_HI = 0, parameter SR_TIME_LO = 1, parameter SR_TIME_CTRL = 2, @@ -84,4 +84,4 @@ module timekeeper else vita_time_lastpps <= vita_time + INCREMENT; -endmodule // timekeeper +endmodule // timekeeper_legacy |