Forum Discussion
zlan01
New Contributor
6 years agoI design a board with max10,and do not design the reset input for max10, how can I generate a internal reset ?
Can I use the locked output of pll to generate a reset signal for my design? And what is the best reset mode for max10 ?using a input reset or generating a reset signal just in FPGA ? For my board,t...
ak6dn
Regular Contributor
6 years agoVery simple to do. Init a register to '0' and have it drive the RESET~ signal (ie, an active low reset).
Then have a counter that starts at '0' and counts up for some number of bits (width depends on clock period and desired reset pulse width).
When the counter overflows (or hits some predetermined value) set the register driving RESET~ to a '1', which deasserts reset.
I have used this technique on various parts to, for example, generate a fixed 500ms reset pulse on FPGA powerup/configuration.
No external reset input signal required.
I used the onboard PLL to generate my system clock from the external 50MHz crystal oscillator input. I also used the 50MHz clock input to drive the reset generation logic (so it operates independent of the PLL).