From: Matt Ettus Date: Wed, 30 Sep 2009 05:35:38 +0000 (-0700) Subject: Enable pps interrupts. Not sure why they were disabled in the first place. X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=e5b76a1b9239f560b3aad21d56a7b417f3c8b0b5;p=debian%2Fgnuradio Enable pps interrupts. Not sure why they were disabled in the first place. --- 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;