Difference between revisions of "Linux"
Jump to navigation
Jump to search
(Created page with '== Installing the required packages == === Ubuntu === Installing the compiler, and the libraries: sudo apt-get install gcc-avr avr-libc Installing programming software (depen…') |
(→Ubuntu) |
||
Line 7: | Line 7: | ||
Installing programming software (depending on your programmer): |
Installing programming software (depending on your programmer): |
||
For AVRs with embedded USB (such as the |
For AVRs with embedded USB (such as the AT90USB82/162, ATmega8/16/32U2, ATmega16/32U4: |
||
sudo apt-get install dfu-programmer |
sudo apt-get install dfu-programmer |
||
When using an external ISP programmer, or our FTDI-atmega board, or arduino's: |
When using an external ISP programmer, or our FTDI-atmega board, or arduino's: |
Latest revision as of 12:56, 21 January 2012
Installing the required packages
Ubuntu
Installing the compiler, and the libraries:
sudo apt-get install gcc-avr avr-libc
Installing programming software (depending on your programmer): For AVRs with embedded USB (such as the AT90USB82/162, ATmega8/16/32U2, ATmega16/32U4:
sudo apt-get install dfu-programmer
When using an external ISP programmer, or our FTDI-atmega board, or arduino's:
sudo apt-get install avrdude avrdude-doc
We advice putting all your projects in a common directory, for example ~/avr/ .