diff options
author | Keith Packard <keithp@keithp.com> | 2016-11-11 23:38:03 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2016-11-17 22:18:39 -0800 |
commit | b41d0f3c5337faa4337d9686c45815e900d86bf5 (patch) | |
tree | 1d8f141eb095fd70e19e60ea5a0765439ee63e1d | |
parent | 7a6c8609ccb670caeab72b80111bec455ea960a7 (diff) |
altos/stmf0: Add a comment about the requirements for using ao_flash_stm
Need HSI clock and the flashing functions loaded in ram.
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | src/stmf0/ao_flash_stm.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/stmf0/ao_flash_stm.c b/src/stmf0/ao_flash_stm.c index ef2e2619..2d57eea7 100644 --- a/src/stmf0/ao_flash_stm.c +++ b/src/stmf0/ao_flash_stm.c @@ -19,6 +19,12 @@ #include <ao.h> #include <ao_flash.h> +/* Note that the HSI clock must be running for this code to work. + * Also, special care must be taken with the linker to ensure that the + * functions marked 'ramtext' land in ram and not rom. An example of that + * can be found in altos-loader.ld + */ + static uint8_t ao_flash_is_locked(void) { |