Skip to content

Commit

Permalink
Merge pull request #134 from Disasm/fix-orangecrab
Browse files Browse the repository at this point in the history
Fix FPGA reset logic for orangecrab target
  • Loading branch information
enjoy-digital committed Dec 21, 2020
2 parents e1f9fd1 + f6a106c commit 36b7fb1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion litex_boards/targets/orangecrab.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ def __init__(self, platform, sys_clk_freq, with_usb_pll=False):
reset_timer = WaitTimer(sys_clk_freq)
self.submodules += reset_timer
self.comb += reset_timer.wait.eq(~rst_n)
self.comb += platform.request("rst_n").eq(reset_timer.done)
self.comb += platform.request("rst_n").eq(~reset_timer.done)


class _CRGSDRAM(Module):
Expand Down

0 comments on commit 36b7fb1

Please sign in to comment.