e0a8ce5a88
Target support for stm32l0's and stm32l1's including option bytes and data EEPROM. This module will superceed the previous stm32l1 driver. o Program flash write and erase. o Options modification and interpretive status. o Stubs for program flash writes and erases. Stubs are modestly faster than non-stub version. The stm32l0 will not execute stubs when the MCU has crashed. A monitor option may be used to force non-stub flash writes. o Stubs generated from C++ code and converted to arrays of half-words. o Writes to data EEPROM supoprted when loading segments. o EEPROM data monitor command to write words. o Stubs supported on stm32l1. |
||
---|---|---|
.. | ||
README | ||
code-to-array.pl | ||
lmi.s | ||
nrf51.s | ||
stm32.s | ||
stm32f4.s | ||
stm32l05x-nvm-prog-erase.cc | ||
stm32l05x-nvm-prog-erase.stub | ||
stm32l05x-nvm-prog-write.cc | ||
stm32l05x-nvm-prog-write.stub |
README
Flash Stubs =========== For most of the targets, these are assembler routines for executing a flash write on the supported targets. They are kept here for reference, but are not used, as the compiled binary code is included in the target drivers. For the STM32l0x, the stubs are written in C++ and emitted as arrays of half-words for inclusion in the target driver. The use of a higher level language allows more detailed code and for easy revisions. These stubs communicate with the driver through a structure defined in the src/include/stm32l0-nvm.h header.