tags:

views:

249

answers:

2

I've got a programming device called USB AVR JTAG-ISP v. 1.2.

Where can I find drivers and a good IDE for it?

A: 

Try the "AVR Studio 4" on Atmel's website.

mbmcavoy
+2  A: 

For windows, AVR Studio 4 as per the other answer.

For Linux, you want the avr-gcc and avrdude packages from your OS distribution, plus your choice of C IDEs for Linux.

For OS X, you want Crosspack and XCode.

On Linux or OS X, depending on which device you are programming, you may need to download the source for avrdude and rebuild it, which will require that you also get libusb 0.1.12 (not libusb 1.x).

Andrew McGregor