1

I got an Arduino UNO which I started using with microc for avr to add more customizations. I'm wondering if it is possible to use the Arduino UNO programmer to program other AVR microcontrollers (I know that it is possible using ATmega 328p and 168).

asked Dec 6, 2014 at 16:50
4
  • Are you using serial port programming or ISP? Commented Dec 6, 2014 at 16:53
  • Not entirely clear what you are asking. Are you familiar with: arduino.cc/en/Tutorial/ArduinoISP Commented Dec 6, 2014 at 16:56
  • yeah i am using arduno isp. Commented Dec 6, 2014 at 17:24
  • It is not clear what do you mean by 'other AVR microcontrollers'. Can you please specify one specific AVR you plan to program using Arduino Uno? Commented Dec 9, 2014 at 19:53

2 Answers 2

2

The AVR microcontrollers that support ISP are all tinyAVRs other than the 4/5/9/10/20/40, and all megaAVRs.

The ATtiny4/5/9/10/20/40 requires TPI (Tiny Programming Interface). AVR XMEGA devices require the use of PDI (Program and Debug Interface). Neither can be programmed using ArduinoISP.

answered Dec 6, 2014 at 20:41
1

If you are using avrisp you can basically program every AVR compatible with ISP protocol.

For example you can program ATTINY85, ATMEGA8, ATMEGA16 etc... Basically for cheap and usable project with a usable flash size i use ATMEGA8 or 88. Avoid ATMEGA48, you have only 4 kb of flash and that mean you can not do anything instead of blinking LED.

Another way to do this is by using Raspberry pi GPIO for burning code on AVR.

Here is some doc from ozzmaker

answered Apr 27, 2017 at 20:56

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.