Last active
October 29, 2023 00:51
-
-
Save gmarkall/6f0a1c16476e8e0a9026 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
The USB Blaster udev rules on the Altera website | |
( http://www.altera.com/download/drivers/dri-usb_b-lnx.html ) | |
did not work for me on Debian Jessie/Sid. A modified version of the file, listed below, works for me | |
(this is the contents of /etc/udev/rules.d/51-usbblaster.rules ). After restarting udev | |
(`sudo service udev restart`) I was able to program the DE0-Nano. | |
# USB-Blaster | |
SUBSYSTEM=="usb", ATTR{idVendor}=="09fb", ATTR{idProduct}=="6001", MODE="0666", GROUP="plugdev" | |
SUBSYSTEM=="usb", ATTR{idVendor}=="09fb", ATTR{idProduct}=="6002", MODE="0666", GROUP="plugdev" | |
SUBSYSTEM=="usb", ATTR{idVendor}=="09fb", ATTR{idProduct}=="6003", MODE="0666", GROUP="plugdev" | |
# USB-Blaster II | |
SUBSYSTEM=="usb", ATTR{idVendor}=="09fb", ATTR{idProduct}=="6010", MODE="0666", GROUP="plugdev" | |
SUBSYSTEM=="usb", ATTR{idVendor}=="09fb", ATTR{idProduct}=="6810", MODE="0666", GROUP="plugdev" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment