Altera_Forum
Honored Contributor
15 years agoCan't recognize silicon ID for device 1
Hello,
- I build my own pcb with a Cyclone iii and an EPCS16S. - I designed the schematic as in the Cyclone III Device Handbook, Volume 1 (page 9-60, figure 9-30) using the AS configuration settings. - I use Quartus 10.0 sp1 Web edition and the USB Blaster. - I use a simple program to test called light.vhd: LIBRARY ieee ; USE ieee.std_logic_1164.all ; ENTITY light IS PORT ( x1, x2 : IN STD_LOGIC ; f : OUT STD_LOGIC ) ; END light ; ARCHITECTURE LogicFunction OF light IS BEGIN f <= (x1 AND NOT x2) OR (NOT x1 AND x2); END LogicFunction ; - Went to Assignments / Device / Device and pin options / Configuration / Configuration scheme = Active Serial Use configuration device = EPCS16 - Compiled the program - Went to File / Convert programming files, and generated a *.pof file including the EPC16 config device. Note: When I set the config device to EPCS16 and than generate, but when I look back in the same menu it is set back to EPC16.... - Went to the programmer, set the USB Blaster and set mode to Active serial programming - Loaded the program *.pof and I get the Error: Can't recognize silicon ID for device 1 I see that the image in the programmer only displays the EPCS16. What am I doing wrong? Please Help! Frans.