2014-10-24 11:07 AM
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?
Thanks2014-10-24 11:19 AM
> 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. JW2014-10-24 11:46 AM
You'd read your executable code into RAM and run it from there.
2014-10-24 11:53 AM
''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...2014-10-24 11:57 AM
Thanks for your quick replies.