STM32 Bootloader size
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2019-02-06 04:29 AM
Dear All,
I am going to use stm32f030f4 which has 16K flash & 4K SRAM. if I use STM32 bootloader , will Bootloader reduce available Flash/Ram or there is other reserved section for Bootloader i mean that i would like to save all flash/ram space for my application.
Best Regards,
Ahmed.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2019-02-06 04:34 AM
The RAM is a reusable resource when it comes to loaders.
If you write your own loader it will consume FLASH. The chip comes with a system loader in a separate ROM/OTP location that doesn't eat into your available FLASH space. ​
Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2019-02-06 04:37 AM
Thanks a lot for your reply.
what is the best document that i can read to use STM32 system loader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2019-02-06 05:01 AM
AN2606 is an overview. And there are others describing the protocol on different connections, USART might be most helpful, so AN3155.
Up vote any posts that you find helpful, it shows what's working..