Forum Discussion
Kenvwhite
New Contributor
1 year agoCyclone 10 LP Evaluation Kit Pinout issue
Hello, I recently purchased EK-10CL025U256 with Cyclone 10CL025YU256I7G and the problem is probably the documentation. I can't assign the right pins in Quartus Prime Lite. I have two documentati...
- 1 year ago
D6, D7, D8, and D9 are the board references on the silkscreen, not device pin numbers, so L14, K15, J14, J13 are correct.
As for why it looks like a power pin is showing up at location L14, check to see if that is perhaps a dual function pin.
Kenvwhite
New Contributor
1 year agoMaybe my program is a problem or a upload to the board even if it's successful. I've tried statically turn on the LED, but nothings change.
After a few minutes D6, D7, D8, and D9 automatically starts blinking. This state is from the beginning and nothings changing it.
library IEEE; use IEEE.STD_LOGIC_1164.ALL; entity ONE_LED_BLINK is Port ( led : out STD_LOGIC ); end ONE_LED_BLINK; architecture Behavioral of ONE_LED_BLINK is begin led <= '1'; end Behavioral;