Difference between revisions of "DFU Bootloader"

From Stm32World Wiki
Jump to navigation Jump to search
Line 5: Line 5:
  
 
{| class=wikitable
 
{| class=wikitable
! Test
+
!  
! Test
+
! Address
! Test
+
! Size (hex)
 +
! Size (kb)
 +
|-
 +
| 0x808000
 +
| 0x8000
 +
| 32kB
 
|}
 
|}
  

Revision as of 05:01, 31 May 2021

All STM32 MCUs have a built-in bootloader which will allow reflashing. The Boot0 pin is used to toggle between "normal" boot and this bootloader. Unfortunately this process can not be controlled without manipulating the Boot0 pin, so if we want to control this from our application, we will have to implement our own bootloader.

Overall Architecture

Address Size (hex) Size (kb)
0x808000 0x8000 32kB

Bootloader

Application

Miscellaneous Links