Altera_Forum
Honored Contributor
9 years agoReset and tutorial Using the SDRAM on Altera's DE0-Nano Boards
Hello,
The tutorial Using the SDRAM on Altera's DE0-Nano Boards uses the Clock Signals IP Core to provide a clock to the SDRAM. But I found that pressing the Key(0) was not resetting. Indeed, in altera_up_altpll.v the reset is not connected to areset of the altpll instance. Here is a correction:altpll PLL_for_DE_Series_Boards (
// Inputs
.inclk ({1'b0, refclk}),
.areset (reset),
// Outputs
.clk ({3'b0, outclk2, outclk1, outclk0}),
.locked (locked),
);
defparam
PLL_for_DE_Series_Boards.port_areset = "PORT_USED",
It works fine, but let me know if I overlooked something. Thanks