How To Burn A Bootloader To Clone Arduino Nano From Mega Gamon
- How To Install A Bootloader To Arduino Clone
- How To Burn A Bootloader To Clone Arduino Nano From Mega Gamon Pokemon
- Arduino Bootloader
January 2018 Arduino Nano bootloader update. First, make sure you have the Arduino AVR Core 1.6.21 or later looking at the Board Manager. Then, to program the NEW Arduino NANO boards you need to chose Processor “ATmega328P”. To program old boards you need to choose Processor “ATmega328P (Old Bootloader)”. Programming the Arduino Bootloader. Don't forget. Make sure you have the right Board selected, for whatever you want to burn. Then select Burn Bootloader→FTDI Friend. (you can also copy your file to C: so its not so long to type. Hit return and grab a beer, it'll take about 5 minutes per byte of data you want to write. 1.check the power led is on when chinese clone of arduino nano connected to usb port of your pc. If it is off your chinese clone board is dead. 2.some chinese clones are different. These clones do not have ftdi chip, which may cause your pc to not see the arduino board once plugged in with the usb.
FavoritedFavorite22Introduction
Do you have a bricked Arduino that won't accept code anymore? Or, maybe you wrote your own firmware and would like to upload it to your Arduino? Or, maybe you just want to learn more about the inner-workings of Arduino, AVR, and microcontrollers in general. Well, you're in luck! This tutorial will teach you what a bootloader is, why you would need to install/reinstall it, and go over the process of doing so.
Suggested Reading
You may want to check out these tutorials before continuing down the bootloader path.
PCB Basics
Serial Peripheral Interface (SPI)
What is an Arduino?
Installing Arduino IDE
Integrated Circuits
Pocket AVR Programmer Hookup Guide
What is a Bootloader?
Atmel AVRs are great little ICs, but they can be a bit tricky to program. You need a special programmer and some fancy .hex files, and its not very beginner friendly. The Arduino has largely done away with these issues. They've put a .hex file on their AVR chips that allows you to program the board over the serial port, meaning all you need to program your Arduino is a USB cable.
The bootloader is basically a .hex file that runs when you turn on the board. It is very similar to the BIOS that runs on your PC. It does two things. First, it looks around to see if the computer is trying to program it. If it is, it grabs the program from the computer and uploads it into the ICs memory (in a specific location so as not to overwrite the bootloader). That is why when you try to upload code, the Arduino IDE resets the chip. This basically turns the IC off and back on again so the bootloader can start running again. If the computer isn't trying to upload code, it tells the chip to run the code that's already stored in memory. Once it locates and runs your program, the Arduino continuously loops through the program and does so as long as the board has power.
Why Install a Bootloader?
If you are building your own Arduino, or need to replace the IC, you will need to install the bootloader. You may also have a bad bootloader (although this is very rare) and need to reinstall the bootloader. There are also cases where you've put your board in a weird setting and reinstalling the bootloader and getting it back to factory settings is the easiest way to fix it. We've seen boards where people have turned off the serial port meaning that there is no way to upload code to the board, while there may be other ways to fix this, reinstalling the bootloader is probably the quickest and easiest.Like I said, having a bad bootloader is actually very very rare. If you have a new board that isn't accepting code, 99.9% of the time its not the bootloader. For the other 1% of the time it is, this guide will help you fix that problem.
Selecting a Programmer
We are going to talk about two different types of programmers you can use to install or reinstall bootloaders.
Option 1: Dedicated Programmers
For a quick easy programmer we recommend looking into the AVR Pocket Programmer (Windows only).
Pocket AVR Programmer
PGM-09825Or, you can use the official Atmel-ICE programmer for ARM, SAM, and AVR.
Atmel-ICE Programmer and Debugger
PGM-14950AVR MKII | JTAG ICE3 |
The AVR Pocket Programmer or most cheaper options will work just fine for most applications, but they may have problems with some boards, specifically ones with lots of memory like the ATMega2560 based boards.
Option 2: Using the Arduino as a Programmer
The other option is grabbing an Arduino Uno (or Duemilanove). If you go into the Arduino IDE you will see an example sketch called 'Arduino as ISP.' If you upload this code to your Arduino, it will basically act as an AVR programmer. This isn't really recommended for production of boards, or boards with lots of memory, but, in a pinch, it works pretty well. Also as of this writing the code only works on ATmega328 boards. Maybe one day it will work on the Leonardo or Due, but not yet.
Hardware Hookup
In-Circuit Serial Programming (ICSP)
It's very uncommon to program ICs before they are soldered onto a PCB. Instead, most microcontrollers have what's called an in-system programming (ISP) header. Particularly, some IC manufacturers, such as Atmel and Microchip, have a specialized ISP method for programming their ICs. This is referred to as in-circuit serial programming (ICSP). Most Arduino and Arduino compatible boards will have a 2x3 pin ICSP header on them. Some may even have more than one depending on how many ICs live on the PCB. It breaks out three of the SPI pins (MISO, MOSI, SCK), power, ground, and reset. These are the pins you'll need to connect your programmer to in order to reflash the firmware on your board.
On some smaller boards you may not see this connector, but the pins should be broken out elsewhere. Whether you're using an SMD IC or a DIP IC, the ISP pins should be accessible in one form or another. Some boards might only have test points for the ISP header. If this is the case, you may want to consider getting an ISP Pogo Adapter. This kit allows you to temporarily make a good connection with test test points in order to reprogram your IC.
SparkFun ISP Pogo Adapter
KIT-11591Once you have located the six ICSP pins on your board, it's time to hook up your programmer to the board. You can use a programming cable to connect the two, or, if you don't have a cable, you can just use some male-to-female jumper wires.
Jumper Wires Premium 6' M/F Pack of 10
PRT-09140AVR Programming Cable
CAB-09215Connecting the Pocket AVR Programmer to Target
If you are using a programmer such as the pocket AVR programmer, your setup should look something like the connection below with the AVR programming cable's arrow (◄) connected to MISO. If you look really closely at the molding of the 2x3 connector, you should be able to notice the arrow (◄) pointing to pin 1 relative to the position of a standard ICSP header.
You also might notice that there is not a cable USB cable connected to one of the RedBoards. Since the pocket AVR programmer can provide 5V power to the target AVR with the switch flipped to the Power Target position, a USB cable is not needed for the RedBoard. However, the official Atmel AVR MKII is not able to provide power to the target board. Thus, a cable is required to connect to the target AVR.
The same goes for newer Atmel programmers. The image below shows the Atmel JTAG ICE3 connected to a RedBoard. As you can see, the position of the AVR cable is connected to the RedBoard similar to the image with the AVR MKII. Since the programmer is not able to provide power to the target, you would need an additional cable connected to the target AVR.
Connecting the Arduino as ISP to Target
Or, if you're using the Arduino as your programmer, it should look the image below. Make sure to power the Arduino as ISP by connecting it to your computer.
Hookup Table
Here's a table to help clarify which connections go where. Depending on the Arduino, you may have access to the ICSP pins only on the 2x3 ICSP header. Make sure to refer to the board layout for more information on the Arduino's SPI connections.
AVR Programmer | Arduino as ISP | 2x3 ICSP Header | ATmega328 | ATmega2560 | ATmega32U4 |
---|---|---|---|---|---|
5V | Vcc/5V | Pin 2 | Vcc | Vcc | Vcc |
GND | GND | Pin 6 | GND | GND | GND |
MOSI | MOSI/D11 | Pin 4 | D11 | D51 | D16 |
MISO | MISO/D12 | Pin 1 | D12 | D50 | D14 |
SCK | SCK/D13 | Pin 3 | D13 | D52 | D15 |
Reset | D10 | Pin 5 | Reset | Reset | Reset |
SparkFun Logic Level Converter - Bi-Directional
BOB-12009SparkFun Voltage-Level Translator Breakout - TXB0104
BOB-11771SparkFun Level Translator Breakout - PCA9306
BOB-11955Logic Levels
Uploading Code - Easy Way
Note: This example assumes you are using the latest version of the Arduino IDE on your desktop. If this is your first time using Arduino, please review our tutorial on installing the Arduino IDE.
Star destroyer for sale. The easy way to upload the bootloader involves using the Arduino IDE.
Upload Arduino as ISP
Grab a known good RedBoard or Arduino Uno. Open your Arduino IDE. In your menu, select File > Examples > 11.ArduinoISP > ArduinoISP to open up the Arduino as ISP sketch
Select the COM port for your Arduino as ISP. The COM port may be different depending on how it enumerated on your computer.
Upload the code to your Arduino to turn it into a AVRISP.
Burning a Bootloader to Your Target
Leave the Arduino as ISP (i.e. your programmer) connected to your computer. If you have not already, connect your target Arduino. Then select the board definition for your target Arduino under Tools > Board.
Select the programmer that you are using under Tools > Programmer. In this case, our programmer is an Arduino as ISP so select ArduinoISP. You will also need to select the COM port that the Arduino as ISP is connected to if you have not selected the COM port already.
Finally, select Burn Bootloader. This will take the board you selected in the Arduino IDE and look up the associated bootloader in the board.txt file. Then, it will find the bootloader in the Arduino IDE's program folder (specifically '..Arduinohardwarearduinoavrbootloaders') and install it. This only works if the board is installed correctly in the IDE and you have the correct bootloader.
If for some reason you want to use a bootloader that isn't installed in the Arduino IDE, visit the next section. However, it's probably easier to just install the bootloader from the Arduino IDE. For those who are curious about settings such as fuse bits, have no fear. Arduino takes care of all the messy details for you when you burn bootloaders through it.
Uploading Code - Hard Way
The hard way is for those people who want to use the command line. This method may be more preferable if you are modifying and recompiling and don't want to have to keep updating the IDE, but otherwise it's pretty unnecessary. Again, you will need to get the programmer and hook everything up. In this example, we are using avrdude on Windows.
There are three steps to this process:
- Set Fuse Bits (i.e. Low, High, and Extended)
- Flash .hex File
- Set Lock Bits
The first step involves setting the fusebits. Fusebits are the part of the AVR chip that determine things like whether you are using an external crystal or whether you want brown out detection. The commands listed below are specifically for the Arduino Uno using an ATMega328, they will probably work on some other similar boards such as the Duemilanove, but make sure you know what you are doing before playing with fusebits. All the required fuse bits are listed in the boards.txt file for different boards. Again, if you have a boards.txt file installed then just use the Easy Way. The second step is actually uploading the program. The final step is setting the lock bits.
Pocket AVR Programmer
Fuse Bits
If you are using the AVR Pocket Programmer to program your target Arduino Uno, type the following commands in the command line to set the fuse bits.
Hex File and Lock Bits
Once the fuse bits are set, we can flash a compiled .hex file to the target board and set the lock bits. Enter the following in a command line. Make sure that you are in same directory as your .hex file and adjust the ..hexfilename.hex
that you are using to flash for your target. To flash the Arduino Uno Bootloader, head over to the Arduino program folder. On a Windows OS, it will look similar to this path ..arduino-1.8.5hardwarearduinoavrbootloadersoptiboot. There area few files in the folder but the one we are interested in is the optiboot_atmega328.hex file.
Arduino as ISP
Fuse Bits
If you are using the Arduino as ISP to program your target Arduino Uno, type the following commands in the command line to set the fuse bits.
Hex File and Lock Bits
Once the fuse bits are set, we can flash a compiled .hex file to the target board and set the lock bits. Enter the following in a command line. Make sure that you are in same directory as your .hex file and adjust the ..hexfilename.hex
that you are using to flash for your target. To flash the Arduino Uno Bootloader, head over to the Arduino program folder. On a Windows OS, it will look similar to this path ..arduino-1.8.5hardwarearduinoavrbootloadersoptiboot. There area few files in the folder but the one we are interested in is the optiboot_atmega328.hex file.
One last bit of info. As we stated earlier, a bootloader is essintially a .hex file. Thus, you can use this method to upload and code you wish to your ICs.
Resources and Going Further
For more info on AVRs, bootloaders, and flashing firmware to other boards, check out these other great tutorials.
- Arduino.cc
You can also check out these related tutorials to learn more about uploading code to AVR chips or modifying firmware.
Tiny AVR Programmer Hookup Guide
Installing a Bootloader on the MicroView
How To Install A Bootloader To Arduino Clone
Servo Trigger Programming Guide
How to Install an ATtiny Bootloader With Virtual USB
How To Burn A Bootloader To Clone Arduino Nano From Mega Gamon Pokemon
Pi AVR Programmer HAT Hookup Guide
Arduino Bootloader
Or check out our ARM programming tutorial for ARM chips.