FrankOuO
New Contributor
3 years agoHow to identify two different de0-nano boards by TCL (Quartus_stp) in a single host PC
Hi, Intel
I followed the fantastic tutorial Talking to the DE0-Nano using the Virtual JTAG interface. by Chris Zeh. and wrote a custom code.
Everything goes well, but now I want to connect two different de0-nano boards in a single PC by Quartus_stp.exe
The Tcl command manual by Intel only showed how to connect a single board in one PC.
but If I connected two de0-nano, the example code only can connect the first USB-Blaster [USB-0]
So I edit the foreach loop to the following:
# Programming Hardwares: set hardware_name [get_hardware_names] # puts $hardware_name if { [string match "USB-Blaster*" [lindex $hardware_name 1]] } { set usbblaster_name [lindex $hardware_name 1] }
but the [lindex $hardware_name number] only depends on the number: the order of the board's connection.
Is there any Tcl command that can identify the specific de0-nano board and connect with the corrected <IP:port> so that I don't need to connect these boards in sequence?