Skip to content

Commit

Permalink
gatemate: re-add PLL lock check
Browse files Browse the repository at this point in the history
  • Loading branch information
vk2seb committed Mar 20, 2024
1 parent 55421ce commit 02abd72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gateware/boards/gatematea1_evb/sysmgr.v
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ CC_PLL #(
`endif

always @(posedge clk_in)
if (rst_in)
if (rst_in || ~usr_pll_lock_stdy)
rst_cnt <= 8'h0;
else if (~rst_cnt[7])
rst_cnt <= rst_cnt + 1;
Expand Down

0 comments on commit 02abd72

Please sign in to comment.