This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

is writing ready flash this involved?

I was reading up on the flash eeprom and best I can tell for the stm32f chips this is needed.
micromouseusa.com/

Has Keil mdk5 not provided a simple function?

Parents
  • What Clive said.

    I think NOT doing your own bootloader is fine (at least for now where you are in your development). Put the configuration at the end of flash. limit the application so that it does not overwrite the config area. As long as you don't do a complete erase when you load new code, your old configuration will remain.

    Adding you own bootloader can be done later if you need too. You configuration data will still be at the end of flash.

Reply
  • What Clive said.

    I think NOT doing your own bootloader is fine (at least for now where you are in your development). Put the configuration at the end of flash. limit the application so that it does not overwrite the config area. As long as you don't do a complete erase when you load new code, your old configuration will remain.

    Adding you own bootloader can be done later if you need too. You configuration data will still be at the end of flash.

Children