diff options
author | Matt Ettus <matt@ettus.com> | 2009-09-29 22:35:38 -0700 |
---|---|---|
committer | Matt Ettus <matt@ettus.com> | 2009-09-29 22:35:38 -0700 |
commit | 7b8f65256b5ea300187ebb6a359df2fa707a295d (patch) | |
tree | 5f9195a8f1677d7ddcdb204519b642053c69923d | |
parent | 618ebd292a5b0acf221ef2d4ccf1a19596bc6c86 (diff) | |
download | uhd-7b8f65256b5ea300187ebb6a359df2fa707a295d.tar.gz uhd-7b8f65256b5ea300187ebb6a359df2fa707a295d.tar.bz2 uhd-7b8f65256b5ea300187ebb6a359df2fa707a295d.zip |
Enable pps interrupts. Not sure why they were disabled in the first place.
-rw-r--r-- | timing/time_sync.v | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/timing/time_sync.v b/timing/time_sync.v index a4c021f58..c0c8e195f 100644 --- a/timing/time_sync.v +++ b/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; |