uP bootloader

RiJoRI

Joined Aug 15, 2007
536
From Wikipedia:
Early programmable computers had a row of toggle switches on the front panel to allow the operator to manually enter the binary boot instructions into memory before transferring control to the CPU. The boot loader would then read the operating system in from an outside storage medium such as paper tape, punched card, or a disk drive.
Gee, I thought the bootloader was the operator, who would flip the switches to enter the boot instructions, make a mistake, and kick (boot) the machine in frustration!

--Rich
:rolleyes:
 

Papabravo

Joined Feb 24, 2006
21,225
It's a variation on a common theme of pulling yourself up by your own bootstraps. The purpose is to get a large program into the code space and begin executing it.

Many chips come preprogrammed with SPI, serial, or USB bootloaders.
 

Arm_n_Legs

Joined Mar 7, 2007
186
The Atmel AT89C5131 has a factory-installed bootloader on the chip. You can get a little understanding of the function of the bootloader from its datasheet.

Basically it is a program that runs when you boot up the chip. This program waits for communication with a USB Host (PC) for the purpose of downloading your own code (which you hv compiled and linked) into the chip.
 
Top