Arduino Stack Exchange is a question and answer site for developers of open-source hardware and software that is compatible with Arduino. Join them; it only takes a minute:

Sign up
Here's how it works:
  1. Anybody can ask a question
  2. Anybody can answer
  3. The best answers are voted up and rise to the top

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.

share|improve this question

migrated from electronics.stackexchange.com Feb 9 at 16:05

This question came from our site for electronics and electrical engineering professionals, students, and enthusiasts.

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

share|improve this answer

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.

share|improve this answer
    
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? – M Time Feb 7 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. – Wesley Lee Feb 7 at 23:38
    
Ok, thanks @Wesley-Lee – M Time Feb 7 at 23:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.