Some AVR code that I wrote for my ATMEL ATMega32 based board. Code is in Assembly and C.
The Assembly folder contains include folder that has the .inc files for all supported AVRs by the AVR assembler. They can be found in any release of AVR Studio. This one was taken from AVR Studio 5.
Just use Atmel Studio. That's good enough
Sorry, nothing for that yet
You should be using X-AVR. Simply follow these instructions and get it working. It's worth it.
Install Mac Homebrew or Macports. I prefer Homebrew, it's much cleaner.
$ brew install avra
$ brew install avr-gcc avrdude avr-libc libusb
If you're an open source maniac and do things from ground up then you can download the AVR Assembler from Sourceforge
If you're not mental about it, you can just download ATMEL Studio and get things done.
NOTE: for AVR Studio you need to remove the .INCLUDE line, it automatically does that inclusion for you.
If you have a Debian based linux box you can just download the package from aptitude
$ sudo aptitude install avra avr-libc avr-gcc avrdude
Otherwise you can build it. You need to grab the source and build it yourself. It's not that hard.
I haven't got around to writing my own tutorials yet, but here's a guide that can help you with that. It's by ATMEL. You can find it here
It's good to have a simulator to learn what is actually going to happen when your code is executed. So for that, we have certain tools.
MacSimAVR this is an alpha release and will be paid soon.
SimulAVR you can find more about this here
AVR Studio all the way. That's why I use Windows, for controller programming and games. Otherwise Linux has everything I will ever need.
You need to find Simulavr using your package manager and install it. It's command line as far as I remember.