RobAIR2013-RICM5-Suivi/BurnBootloader

From air
Jump to navigation Jump to search

Burning the Arduino Bootloader onto an ATmega168PA using an Arduino Uno

Introduction

This tutorial explains how to use an Arduino board (Arduino Uno) as an AVR ISP (in-system programmer). This allows you to use the board to burn the bootloader onto an AVR (the ATmega168 used in Arduino). This steps have been tested with Arduino 022 and Windows as OS. (Not the same in results on Linux :( )

Attention: This is not required for normal use of the Wild Thumper Controller (normally come with a bootloader).

This tutorials is based on the tutorials http://arduino.cc/en/Tutorial/ArduinoISP and http://letsmakerobots.com/node/32096. These instructions are based on Arduino 022 running on Windows (not successful results on Linux).

Instructions

1. First, Replace the files arduino-0022\hardware\arduino\boards.txt and arduino-0022\hardware\tools\avr\etc\avrdude.conf by this two files: Close the Arduino IDE.

2. Open the IDE. You will see three new boards:

Open the ArduinoISP firmware (in Examples) to your Arduino board.

2. Select Tools > Board and Serial Port > Arduino Uno (the board that we are using as a programmer)

Connection

3. Upload the ArduinoISP sketch into your programmer

Connection

4. Disconnect the USB cable from the Arduino Uno.

5. Wire the Wild Thumper Controller with the Arduino Uno as shown in the picture

Connection
Schema

6. Plug in your USB cable to the programmer (Arduino Uno). Select the item in the Tools > Board > DAGU product w/Atmega 168, then the item Tools > Burn Bootloader > Arduino as ISP.

Connection
Schema

7. Now click on Burn Bootloader

Schema

8. If this doesn't work, execute cmd.exe and execute the following command:

C:\Users\Liz\Desktop\arduino-0022\arduino-0022\hardware/tools/avr/bin/avrdude -CC:\Users\Liz\Desktop\arduino-0022\arduino-
0022\hardware/tools/avr/etc/avrdude.conf -v -v -v -v -patmega168p -cstk500v1 -P\\.\COM4 -b19200 -e -Ulock:w:0x3F:m -Uefuse:w:0x00:m
-Uhfuse:w:0xdd:m -Ulfuse:w:0xff:m -F

The bootloader have been burn!