我想用 OpenOCD 运行 Altera Cyclone IV IP。不管我需要 quartus 的什么文件,但执行应该由 OpenOCD 完成。我目前正在尝试使用 sof 文件。quartus 用于程序员的那个。
也欢迎使用其他提示来闪烁它。
.sof 文件是与 openbcd 一起使用的正确文件吗?
我的板是“Altera Cyclone IV FPGA 学习板 EP4CE6E22C8N 和 USB Blaster 编程器”品牌是 [zrTech]
在 Quartus 中,这个配置有时用于执行它(sof 文件),但也不是每次都执行。但是当它开始工作时,它会继续这样做: 这就是我目前收集的似乎很好的东西(评论除外):
altera_ep4ce6e22.cfg:
interface usb_blaster
usb_blaster_lowlevel_driver ftdi
transport select jtag
set CHIPNAME ep4ce6mb
set FPGA_TAPID 0x020f10dd
jtag newtap $CHIPNAME tap -irlen 10 -ircapture 0x01 -irmask 0x3 -expected-id $FPGA_TAPID
##no errors but not sure about those
pld init
init
## Some stuff I tried with the errors of the results ###
#pld load 0 project.sof ###Error: invalid subcommand "load 0 project.sof"
#program project.sof ###Error: ** Unable to reset target **
在上面的那个状态下,这是我得到的输出(命令在那里等待 - 它不返回):
###: openocd -f altera_ep4ce6e22.cfg
Open On-Chip Debugger 0.10.0
Licensed under GNU GPL v2
For bug reports, read
http://openocd.org/doc/doxygen/bugs.html
Warn : Adapter driver 'usb_blaster' did not declare which transports it allows; assuming legacy JTAG-only
Info : only one transport option; autoselect 'jtag'
Warn : Transport "jtag" was already selected
Info : usb blaster interface using libftdi
Info : This adapter doesn't support configurable speed
Info : JTAG tap: ep4ce6mb.tap tap/device found: 0x020f10dd (mfg: 0x06e (Altera), part: 0x20f1, ver: 0x0)
Info : 'pld init' has already been called
Warn : gdb services need one or more targets defined
知道我必须做些什么来完成这项工作吗?
谢谢你的帮助。