Difference between revisions of "Intel Quartus"
(added Quartus II 13.0sp1 instructions for Ubuntu 20.04) |
(added udev rules) |
||
Line 94: | Line 94: | ||
sudo apt update | sudo apt update | ||
sudo apt install libpng12-0</pre> | sudo apt install libpng12-0</pre> | ||
+ | |||
+ | For Quartus to be able to access the USB Blaster with proper permissions, udev rules need to be set up: | ||
+ | |||
+ | <pre>echo 'ATTR{idVendor}=="09fb", ATTR{idProduct}=="6001", MODE="666"' | sudo tee /etc/udev/rules.d/altera-usb-blaster.rules</pre> | ||
+ | |||
+ | Taken from: | ||
+ | |||
+ | http://www.armadeus.org/wiki/index.php?title=Quartus_installation_on_Linux#USB-Blaster | ||
== Online Resources == | == Online Resources == |
Revision as of 14:57, 1 April 2021
Overview
Intel Quartus Prime, formerly Altera Quartus II, is an FPGA IDE for Intel/Altera's FPGAs and CPLDs. Different version ranges of the software support various generations of their products.
Download Links
https://www.intel.com/content/www/us/en/software/programmable/quartus-prime/download.html
https://fpgasoftware.intel.com/?edition=lite
A table of the last version that supported a given device family:
https://fpgasoftware.intel.com/devices/
Installing
Quartus II 13.0sp1
Ubuntu 20.04
The installer won't launch unless you install 32-bit libc:
sudo apt-get install libc6-i386
Once installed, the application won't launch without libpng12, and libpng16 is what ships with Ubuntu. Luckily there is a PPA:
sudo add-apt-repository ppa:linuxuprising/libpng12 sudo apt update sudo apt install libpng12-0
For Quartus to be able to access the USB Blaster with proper permissions, udev rules need to be set up:
echo 'ATTR{idVendor}=="09fb", ATTR{idProduct}=="6001", MODE="666"' | sudo tee /etc/udev/rules.d/altera-usb-blaster.rules
Taken from:
http://www.armadeus.org/wiki/index.php?title=Quartus_installation_on_Linux#USB-Blaster