Programmable Devices
CPLDs, FPGAs, SoC FPGAs, Configuration, and Transceivers
21615 Discussions

Help me Flash Cyclone III development kit

Altera_Forum
Honored Contributor II
1,236 Views

some master help me ....about config flash on cyclone iii development kit.... 

my project need to use the Flash as a store component.....so when i assign pin for it ....and build by Quartus...i have run my program to open device flash but it not work....i dont know what happent... 

- My flash 64m 25bit adress and 16 bit data.... 

- I have used tristate bridge obey userguide of altera.
0 Kudos
2 Replies
Altera_Forum
Honored Contributor II
337 Views

hi there. I had some problems with the flash on a dev board. I solved it by editing the .v file of the system with the following lines ( I added the Reset and Write protected signal) 

 

module flash ( // 1) global signals: clk_0, reset_n, // the_tri_state_bridge_0_avalon_slave address_to_the_cfi_flash_0, read_n_to_the_cfi_flash_0, select_n_to_the_cfi_flash_0, tri_state_bridge_0_data, write_n_to_the_cfi_flash_0, reset_flash, wp_n_flash ); output reset_flash; assign reset_flash=reset_n; output wp_n_flash; assign wp_n_flash=1'b1; 

 

Hope it's useful. 

regards, Alex
0 Kudos
Altera_Forum
Honored Contributor II
337 Views

Thank Gadlex so much for your helping....i have solved my problem....i remove pin reset_flash...and my project can access to Flash....when i use a program to open the flash device....it ok.....i just need it like a store component....so i dont need to reset....thank again...

0 Kudos
Reply