From e5b76a1b9239f560b3aad21d56a7b417f3c8b0b5 Mon Sep 17 00:00:00 2001 From: Matt Ettus Date: Tue, 29 Sep 2009 22:35:38 -0700 Subject: [PATCH] Enable pps interrupts. Not sure why they were disabled in the first place. --- usrp2/fpga/timing/time_sync.v | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/usrp2/fpga/timing/time_sync.v b/usrp2/fpga/timing/time_sync.v index a4c021f5..c0c8e195 100644 --- a/usrp2/fpga/timing/time_sync.v +++ b/usrp2/fpga/timing/time_sync.v @@ -133,12 +133,11 @@ module time_sync always @(posedge wb_clk_i) if(rst_i) int_o <= 0; -/* - else if(tick_int_enable & (internal_tick | internal_tick_d1)) + else if(tick_int_enable & (internal_tick | internal_tick_d1)) int_o <= 1; else int_o <= 0; -*/ + always @(posedge sys_clk_i) if(rst_i) epoch_o <= 0; -- 2.30.2