libopencm3 STM32F0xx FLASH
More...
libopencm3 STM32F0xx FLASH
- Version
- 1.0.0
- Author
- © 2013 Frantisek Burian BuFra.nosp@m.n@se.nosp@m.znam..nosp@m.cz
- Date
- 14 January 2014
For the STM32F0xx, accessing FLASH memory is described in section 3 of the STM32F0xx Reference Manual.
FLASH memory may be used for data storage as well as code, and may be programmatically modified. Note that for firmware upload the STM32F1xx provides a built-in bootloader in system memory that can be entered from a running program.
FLASH must first be unlocked before programming. In this module a write to FLASH is a blocking operation until the end-of-operation flag is asserted.
- Note
- : don't forget to lock it again when all operations are complete.
LGPL License Terms libopencm3 License
◆ flash_clear_eop_flag()
void flash_clear_eop_flag |
( |
void |
| ) |
|
◆ flash_clear_pgerr_flag()
void flash_clear_pgerr_flag |
( |
void |
| ) |
|
◆ flash_clear_status_flags()
void flash_clear_status_flags |
( |
void |
| ) |
|
◆ flash_clear_wrprterr_flag()
void flash_clear_wrprterr_flag |
( |
void |
| ) |
|
◆ flash_erase_all_pages()
void flash_erase_all_pages |
( |
void |
| ) |
|
◆ flash_erase_option_bytes()
void flash_erase_option_bytes |
( |
void |
| ) |
|
◆ flash_erase_page()
void flash_erase_page |
( |
uint32_t |
page_address | ) |
|
Erase a Page of FLASH.
This performs all operations necessary to erase a page in FLASH memory. The page should be checked to ensure that it was properly erased. A page must first be fully erased before attempting to program it.
Note that the page sizes differ between devices. See the reference manual or the FLASH programming manual for details.
- Parameters
-
[in] | page_address | Full address of flash page to be erased. |
Definition at line 123 of file flash.c.
References FLASH_AR, FLASH_CR, FLASH_CR_PER, FLASH_CR_STRT, and flash_wait_for_last_operation().
◆ flash_get_status_flags()
uint32_t flash_get_status_flags |
( |
void |
| ) |
|
◆ flash_lock()
◆ flash_prefetch_disable()
void flash_prefetch_disable |
( |
void |
| ) |
|
Note carefully the clock restrictions under which the prefetch buffer may be set to disabled.
See the reference manual for details.
Definition at line 31 of file flash_common_all.c.
References FLASH_ACR.
◆ flash_prefetch_enable()
void flash_prefetch_enable |
( |
void |
| ) |
|
This buffer is used for instruction fetches and may or may not be enabled by default, depending on platform.
(F1: yes, most others: no)
Note carefully the clock restrictions under which the prefetch buffer may be enabled or disabled. Changes are normally made while the clock is running in the power-on low frequency mode before being set to a higher speed mode.
Note carefully that prefetch may also results in increased consumption and can only improve performance on "mostly linear" workloads where there is at least one flash wait state.
See the reference manual for your particular target for more details.
Definition at line 26 of file flash_common_all.c.
References FLASH_ACR, and FLASH_ACR_PRFTEN.
Referenced by rcc_clock_setup_in_hse_8mhz_out_48mhz(), rcc_clock_setup_in_hsi48_out_48mhz(), and rcc_clock_setup_in_hsi_out_48mhz().
◆ flash_program_half_word()
void flash_program_half_word |
( |
uint32_t |
address, |
|
|
uint16_t |
data |
|
) |
| |
Program a Half Word to FLASH.
This performs all operations necessary to program a 16 bit word to FLASH memory. The program error flag should be checked separately for the event that memory was not properly erased.
Status bit polling is used to detect end of operation.
- Parameters
-
[in] | address | Full address of flash half word to be programmed. |
[in] | data | half word to write |
Definition at line 97 of file flash.c.
References FLASH_CR, FLASH_CR_PG, flash_wait_for_last_operation(), and MMIO16.
Referenced by flash_program_word().
◆ flash_program_option_bytes()
void flash_program_option_bytes |
( |
uint32_t |
address, |
|
|
uint16_t |
data |
|
) |
| |
◆ flash_program_word()
void flash_program_word |
( |
uint32_t |
address, |
|
|
uint32_t |
data |
|
) |
| |
Program a 32 bit Word to FLASH.
This performs all operations necessary to program a 32 bit word to FLASH memory. The program error flag should be checked separately for the event that memory was not properly erased.
Status bit polling is used to detect end of operation.
- Parameters
-
[in] | address | Full address of flash word to be programmed. |
[in] | data | word to write |
Definition at line 82 of file flash_common_f01.c.
References flash_program_half_word().
◆ flash_set_ws()
void flash_set_ws |
( |
uint32_t |
ws | ) |
|
◆ flash_unlock()
void flash_unlock |
( |
void |
| ) |
|
◆ flash_unlock_option_bytes()
void flash_unlock_option_bytes |
( |
void |
| ) |
|
◆ flash_wait_for_last_operation()
void flash_wait_for_last_operation |
( |
void |
| ) |
|