...
Code Block |
---|
sudo apt-get install avr-libc binutils-avr gcc-avr avrdude avarice gdb-avr |
This installs an outdated version of avrdude. To get a more recent one (that can work with the JTAGICE3) do the following:
Code Block |
---|
sudo add-apt-repository ppa:pmjdebruijn/avrdude-release
sudo apt-get update
sudo apt-get install avrdude
|
and now everything should work as is, with the modified files.
...