Question

Is there a script to upload a *.pof file using TCL Scripting through Quartus Programmer on my FPGA?

Preferably from the command line because i want integrate it into my custom software.

Was it helpful?

Solution

If you just want a command-line utility you can run quartus_pgm like this:

quartus_pgm -z --mode=JTAG --operation="p;/path/to/image.sof@2"

where @2 indicates the device in the JTAG chain to program. You might also be interested in quartus_jli which writes JAM files.

For full details look at the Quartus II Scripting Reference Manual. I'm not sure whether you can use the JTAG package directly from TCL though, the documentation suggests only from a shell in SignalTap (see table 3).

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top