-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
56 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
interface ftdi | ||
ftdi_device_desc "Digilent USB Device" | ||
ftdi_vid_pid 0x0403 0x6010 | ||
ftdi_channel 0 | ||
ftdi_layout_init 0x0088 0x008b | ||
reset_config none | ||
adapter_khz 10000 | ||
|
||
transport select jtag | ||
|
||
source [find cpld/xilinx-xc7.cfg] | ||
source [find cpld/jtagspi.cfg] | ||
|
||
if { [info exists BINFILE] } { | ||
set _BINFILE $BINFILE | ||
} else { | ||
set _BINFILE boot.bin | ||
} | ||
|
||
init | ||
jtagspi_init 0 bscan_spi_xc7a100t.bit | ||
jtagspi_program $_BINFILE 0x0 | ||
shutdown | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters