0

Is there any way to burn the Arduino bootloader on a standalone Atmega328 (internal clock 8MHz) from the Arduino official website without using an extra Arduino board to burn the bootloader?

I mean, is it possible to burn the bootloader on the Arduino and then remove the ATmega chip from the Arduino board and use it in a breadboard?

Thanks.

dda
1,5951 gold badge12 silver badges17 bronze badges
asked Feb 7, 2017 at 23:26

2 Answers 2

3

If you don't want to go the route of a dedicated programmer, you could try ArduinoISP where you can program an Arduino board (with a Mega on it) to be a programmer for another AVR device (e.g. another Mega). The instructions can be found at https://www.arduino.cc/en/Tutorial/ArduinoISP and allows you to do something like this:

arduinoisp

answered Feb 8, 2017 at 1:09
0
0

Yes, use an ISP programmer. I personally use Atmel ICE, Arduinos as ISP and USBasp.

AVRISP is another popular option:

enter image description here

This tutorial might be useful: Sparkfun.

answered Feb 7, 2017 at 23:30
2
  • so it's not possible to burn the bootloader on the ATMega using the arduino board itself (conectet to the pc via USB) and then remove the MCU and use it standalone? Commented Feb 7, 2017 at 23:33
  • Not using the board itself. (It could be possible if you modified the USB>Serial Atmega to become some sort of USBtinyISP, cut and rewired a bunch of stuff, but it wouldn't be practical at all and you'd still need a programmer to reprogram it anyway). So you need a programmer at some point. Commented Feb 7, 2017 at 23:38

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.