Bootloader

A bootloader is a small startup program that runs on the microcontroller before the main application software and starts it. Its real value is that it allows software updates in the field without removing the board: when an update command arrives, instead of starting the application it switches to receiving the new software.

A typical bootloader follows this order at power-up: it prepares the hardware at the most basic level, checks whether there is an update request, and if there is none it jumps to the application software.

On boards without a bootloader, updating requires physical access to the programming header, which means taking the board out of its enclosure. For a product widely installed in the field, this difference is one of the decisions that determines maintenance cost.

Knowledge Center