Skip to main content
Visitor II
December 3, 2021
Question

STM32 Bootloader: What is Bootloader, how to use it & what are all the concepts we need to know to implement bootloader in STM32L4R5ZI MCU?

  • December 3, 2021
  • 1 reply
  • 1785 views

Why we need Bootloader, what is the tool to implement this, How to interface it, what are the Security features available in Bootloader?

    This topic has been closed for replies.

    1 reply

    Technical Moderator
    December 3, 2021

    It depends on which bootloader you are talking about: you can use the internal bootloader, which is discussed in detail in AN2606, or you can use your own, self-written one.

    Difference:

    • the internal one is in parallel to the user flash, so it does not take up any space for the user application
    • a self-written one offers full flexibility, but reduces the usable user Flash

    Please read the documentation in AN2606 mentioned above as it probably answers a lot of your questions.

    Regards

    /Peter

    Visitor II
    December 4, 2021

    Thanks @Peter BENSCH​ 

    Visitor II
    December 6, 2021

    Hi @Peter BENSCH​ ,

    I want to write my own bootloader..

    Can you please help me out...