Altera_Forum
Honored Contributor
16 years agoHow can I generate pof from sof in the command mode?
Hi members.
I'm trying to solve below two problems for last several days. The environment used is - Stratix IV 530 device - CFI_256MB for configuration - All comand-mode synthesis, P&R and configuration file generation (quartus_sh -t project_name.tcl) 1. Can't convert sof file to pof with command as below. The command does not support CFI_256MB maybe. set CPF_ARGS "-c -o --configuration_mode=FPP -o --frequency=50.0MHz -o --start_address=0x01FF0000 -d CFI_256MB $PROJECT_NAME.sof $PROJECT_NAME.pof" if {[catch {execute_module -tool cpf -args $CPF_ARGS} result]} { puts "\nResult: $result\n" puts "ERROR: Quartus Programming File Converter failed. See the report file.\n" qexit -error } else { puts "\nINFO: Quartus Programming File Converter was successful.\n" } 2. I want to insert signal tap into my design using script. I found how to insert stp file to the tcl script. But still don't know how to make stp file itself. Waiting for comments. Thanks. Hoon.