cancel
Showing results for 
Search instead for 
Did you mean: 

External booting of STM32F427 from EEPROM

2013ee139
Associate II
Posted on June 23, 2016 at 18:38

I am working on Stm32f427. I want to interface EEPROM with this microcontroler for external booting. The external booting options mentioned in referance manual are from system memory and SRAM. Please tell me how to interface EEPROM with this microcontroller. Can I use SRAM for booting through EEPROM?

#stm32f427-boot #eeprom
3 REPLIES 3
Posted on June 23, 2016 at 19:15

You will have to build your own loader to pull code from the EEPROM device. If it can be interfaced via the FSMC/FMC you may be able to execute the code in-place, but your loader would still need to configure the external bus, and transfer control.

External memory generally operates significantly slower than internal memory, and is usually avoided for code execution for those reasons.

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..
2013ee139
Associate II
Posted on June 24, 2016 at 08:29

Speed is not an issue. Can you tell me how to build loader to pull out the code from the EEPROM.

Posted on June 24, 2016 at 08:56

I could, but I have more pressing work to do.

Tips, Buy me a coffee, or three.. PayPal Venmo
Up vote any posts that you find helpful, it shows what's working..