Forum Discussion
Altera_Forum
Honored Contributor
12 years agoblink led on device- not running user program on board and problem in pin assignment
Hi, I am new to fpga programming. I am using ep2s60f672c3n stratix fpga device.I need to blink the led of development kit. module led(led,clk); input clk; output [7:0]led; reg[7:0]le...
Altera_Forum
Honored Contributor
12 years agoAs far as I can see, this line
led=8'b0;will not cause your leds to blink, it just sets the signal to a constant value. To make them blink you will have to change their value regularly to 1 and back to 0. If the clock clk is too fast for the human eye (most probably) then you will need to implement a counter to only change the signal every n clock cycle.