libopencm3 STM32L1xx FLASH
More...
libopencm3 STM32L1xx FLASH
- Version
- 1.0.0
- Author
- © 2010 Thomas Otto tommi.nosp@m.@via.nosp@m.dmin..nosp@m.org
-
© 2010 Mark Butler mbutl.nosp@m.er@p.nosp@m.hysic.nosp@m.s.ot.nosp@m.ago.a.nosp@m.c.nz
-
© 2012 Karl Palsson karlp.nosp@m.@twe.nosp@m.ak.ne.nosp@m.t.au
- Date
- 14 January 2014
For the STM32L1xx, accessing FLASH memory is described briefly in section 2.3.3 of the STM32L1xx Reference Manual. For detailed programming information see: PM0062 programming manual: STM32L1xxxx Flash and EEPROM programming March 2012, Doc ID 16024 Rev 5
LGPL License Terms libopencm3 License
◆ eeprom_program_word()
void eeprom_program_word |
( |
uint32_t |
address, |
|
|
uint32_t |
data |
|
) |
| |
◆ eeprom_program_words()
void eeprom_program_words |
( |
uint32_t |
address, |
|
|
uint32_t * |
data, |
|
|
int |
length_in_words |
|
) |
| |
Write a block of words to eeprom.
Writes a block of words to EEPROM at the requested address, erasing if necessary, and locking afterwards. Only wordwise writing is safe for writing any value
- Parameters
-
[in] | address | must point to EEPROM space, no checking! |
[in] | data | pointer to data to write |
[in] | length_in_words | size of of data in WORDS! |
Definition at line 150 of file flash_common_l01.c.
References flash_lock_pecr(), FLASH_PECR, FLASH_SR, FLASH_SR_BSY, flash_unlock_pecr(), and MMIO32.
◆ flash_64bit_disable()
void flash_64bit_disable |
( |
void |
| ) |
|
Enable 32 Bit Programming Mode.
This mode is a low power mode. It must be used at low frequencies and does not allow prefetch or wait states to be used.
Definition at line 69 of file flash.c.
References FLASH_ACR.
◆ flash_64bit_enable()
void flash_64bit_enable |
( |
void |
| ) |
|
◆ flash_erase_page()
void flash_erase_page |
( |
uint32_t |
page_address | ) |
|
◆ flash_lock()
◆ flash_lock_option_bytes()
void flash_lock_option_bytes |
( |
void |
| ) |
|
◆ flash_lock_pecr()
void flash_lock_pecr |
( |
void |
| ) |
|
◆ flash_lock_progmem()
void flash_lock_progmem |
( |
void |
| ) |
|
◆ 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_hsi(), rcc_clock_setup_msi(), and rcc_clock_setup_pll().
◆ flash_program_half_page()
void flash_program_half_page |
( |
uint32_t * |
dst, |
|
|
void * |
buf |
|
) |
| |
◆ flash_set_ws()
void flash_set_ws |
( |
uint32_t |
ws | ) |
|
◆ flash_unlock()
void flash_unlock |
( |
void |
| ) |
|
◆ flash_unlock_acr()
void flash_unlock_acr |
( |
void |
| ) |
|
◆ flash_unlock_option_bytes()
void flash_unlock_option_bytes |
( |
void |
| ) |
|
◆ flash_unlock_pecr()
void flash_unlock_pecr |
( |
void |
| ) |
|
◆ flash_unlock_progmem()
void flash_unlock_progmem |
( |
void |
| ) |
|