Created
August 23, 2022 15:31
-
-
Save 74hc595/edba9f1cb516817a04ded9b1970c5743 to your computer and use it in GitHub Desktop.
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
source [find interface/altera-usb-blaster.cfg] | |
adapter_khz 400 | |
transport select jtag | |
jtag newtap atf1504 tap -irlen 3 -expected-id 0x0150403f | |
init | |
svf -progress foo.svf | |
sleep 200 | |
shutdown |
Just replacing the "1504"s with "1508"s has worked for me:
source [find interface/altera-usb-blaster.cfg]
adapter_khz 400
transport select jtag
jtag newtap atf1508 tap -irlen 3 -expected-id 0x0150803f
init
svf -progress foo.svf
sleep 200
shutdown
Thanks, that worked :-)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Do you have a similar config file for the ATF1508? Thanks!!