Solved
Forum Discussion
HRZ
Frequent Contributor
7 years agoIndeed the board is not detected. Can you elaborate what binary you are using to configure the FPGA via JTAG, and mention the exact command line you are using to do so?
By the way, you can use this script to convert the boardtest.aocx file to sof and use that to configure the FPGA instead. Just make sure to correct the path to the file first.
#!/bin/bash
aocxfile="*path*/boardtest.aocx"
binfile="fpga_temp.bin"
sofopenclfile="fpga_temp.sof"
aocl binedit $aocxfile get .acl.fpga.bin $binfile
aocl binedit $binfile get .acl.sof $sofopenclfile
quartus_pgm --mode=JTAG --cable=1 -o "p;$sofopenclfile"