3 Simple Ways to
Share What You Make

With Instructables you can share what you make with the world — and tap into an ever-growing community of creative experts.

PhotosPhotos

Share one or more photos of a project, recipe, or whatever you've made, quickly and easily.

Step by StepStep-By-Step

Share your step-by-step photos with text instructions of what you made so others can do it too!

VideoVideo

Share your how-to video. You'll need your embed code from a video site such as YouTube.

My Arduino In Circuit Programmer

My Arduino In Circuit Programmer
«
  • MyBootloader.JPG
  • BootloadBreadBD.JPG
  • BootError.jpg

This Lazy Old Geek is also an Arduino Geek. If you are an Arduino Geek, one of the common microcontrollers used by Arduinos is the Atmega328 chip. In order to use Arduino software, the Atmega must have bootloader software on it.

Okay, so I bought some blank Atmega328-PU chips from Mouser.com.
TIP: If you want to make your life simpler, order the Atmega328P-PU chips instead of the Atmega328-PU chips.
I didn’t realize there was a difference. As far as I can tell, the Atmega328P-PU has lower power but it also has a different device signature which is important to Arduino users. As of November 2011, the Atmega328-PU is cheaper by about $1.

Problem: So there are hundreds of articles on installing bootloader on the Atmega328. I built one using another Arduino to program the chip. I built one using the USB-BUB to program the chip. I built one using a parallel port to program the chip. Well, even after a week of troubleshooting and searching the Internet, none of them worked. So I gave up. I am usually a very persistent hacker but I’m getting old so I gave up.
Solution?: Well, about a month later I saw another bootloader from Ladyada.net:
http://ladyada.net/library/tools/standaloneisp.html

Well, this one looked a lot like most of the others I’d built. But it was from AdaFruit which has some of the best tutorials (accurate, complete, well documented) I’ve seen for the Arduino and it had different code. So I hacked up the hardware (See picture) using a RBBB Arduino and loaded the software. And guess what. It still didn’t work.
VERY FRUSTRATING!!

Well, I looked at the code and saw that it was set up to use the Serial Terminal. So I opened up the Serial Terminal and ran the program again.
This is the error message I got. (See picture)

After a lot of fooling around with Bootloaders I thought that this was not the correct signature that most software was looking for.

Signature: So what is a signature? Well, it turns out it is a specific code hard wired into the chip to identify it. Now all of the bootloader software seemed to be looking for 0x950F and not 9514 or 0x9514.
GeekSpeak: This is like ROM code that cannot be changed. By the way when you see programming code written starting with ‘0x’ that means it is a hexadecimal number. I won’t go into details but hexadecimal numbers go from 0 to 15 instead of 0 to 10.
Signature: So it turns out the bootloader software I’ve seen were based on the 0x950F signature which is the signature for the Atmega328P-PU chip. Being in electronics for 40 years, I usually ignored letters after the number. They are usually just revisions. This is basically true but in this case, the change also affects bootloading.
GeekSpeak: The PU refers to the packaging in this case PDIP which will fit into the 28 pin narrow IC socket preferred by most hobbyists.

 
Remove these adsRemove these ads by Signing Up
 

Step 1My Programmer

My Programmer

Solution: Well, I did get it to work with my breadboard setup with some software changes discussed later but I wanted a more permanent setup. I did have a protoshield like the one used in the AdaFruit writeup but I wanted to save mine for future projects so I decided to build my own shield.

Parts List:
PCB I used a hunk of the following:
            5* Breadboard Bread Board Prototype 432 Points 5*7cm
            $1.39 ebay
28 pin IC socket
            $0.06 Taydaelectronics.com
2 1.2K resistors
1 red LED
1 green LED
1 pushbutton
Male header pins
            About $0.25 Taydaelectronics.com

I had all of the above on hand but the total cost was about $1.

« Previous StepDownload PDFView All StepsNext Step »
6 comments
Nov 18, 2011. 9:04 PMatif khair says:
I like the review that work is really awesome or remarkable i get what to do and how to do .
Jaycon
Nov 15, 2011. 7:06 AMastroboy907 says:
Just FYI, tayda electronics sells proto boards too - I think they are actually the same one as you have :)
Nov 13, 2011. 8:48 PMBongmaster says:
neat :)

tho the 'bootloader' is the code on the chip that allows it to take programming from the pc wen the chip starts up.

what u have there is an 'in circuit programmer'

entirely different thing ;)
Nov 14, 2011. 12:28 PMBongmaster says:
much better :)
may have to make summin similar for a nano based board

Pro

Get More Out of Instructables

Already have an Account?

close

All Steps Viewing
View all steps of an Instructable on the same page when you're a Pro Member.

Upgrade to Pro today!
47
Followers
33
Author:msuzuki777
Lazy Old Geek