cancel
Showing results for 
Search instead for 
Did you mean: 

STM32F4 running from sd card

setartarney
Associate II
Posted on October 24, 2014 at 20:07

Hello, I wanted to know if it is possible to run a code on the stm32f4 board from an external flash like an sd card. Do I have to program a bootloader?

Thanks
4 REPLIES 4
Posted on October 24, 2014 at 20:19

> Hello, I wanted to know if it is possible to run a code on the stm32f4 board from an external flash like an sd card.

No.

> Do I have to program a bootloader?

Yes.

JW

Posted on October 24, 2014 at 20:46

You'd read your executable code into RAM and run it from there.

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..
Andrew Neil
Evangelist
Posted on October 24, 2014 at 20:53

''read your executable code into RAM''

Or Flash - in which case you'd probably also want some means to check if it's already in the Flash...
setartarney
Associate II
Posted on October 24, 2014 at 20:57

Thanks for your quick replies.