NVMC HAL
- group nrf_nvmc_hal
Hardware access layer (HAL) for managing the Non-Volatile Memory Controller (NVMC) peripheral.
Defines
-
NRF_NVMC_PARTIAL_ERASE_PRESENT
Symbol indicating whether the option of page partial erase is present.
Enums
Functions
-
NRF_STATIC_INLINE bool nrf_nvmc_ready_check(NRF_NVMC_Type const *p_reg)
Function for checking if NVMC is ready to perform write or erase operation.
- Parameters
p_reg – [in] Pointer to the structure of registers of the peripheral.
- Return values
true – NVMC can perform write or erase.
false – NVMC is busy and cannot perform next operation yet.
-
NRF_STATIC_INLINE bool nrf_nvmc_write_ready_check(NRF_NVMC_Type const *p_reg)
Function for checking if NVMC is ready to accept the next write operation.
NVM writing time can be reduced by using this function.
- Parameters
p_reg – [in] Pointer to the structure of registers of the peripheral.
- Return values
true – NVMC can accept the next write. It will be buffered and will be taken into account as soon as the ongoing write operation is completed.
false – NVMC is busy and cannot accept the next write yet.
-
NRF_STATIC_INLINE void nrf_nvmc_mode_set(NRF_NVMC_Type *p_reg, nrf_nvmc_mode_t mode)
Function for setting the NVMC mode.
Only activate erase and write modes when they are actively used. If Instruction Cache (ICache) is present, enabling write or erase will invalidate the cache and keep it invalidated.
- Parameters
p_reg – [in] Pointer to the structure of registers of the peripheral.
mode – [in] Desired operating mode for NVMC.
-
NRF_STATIC_INLINE void nrf_nvmc_nonsecure_mode_set(NRF_NVMC_Type *p_reg, nrf_nvmc_ns_mode_t mode)
Function for setting the NVMC mode for non-secure Flash page operations.
- Parameters
p_reg – [in] Pointer to the structure of registers of the peripheral.
mode – [in] Desired operating mode for NVMC.
-
NRF_STATIC_INLINE void nrf_nvmc_page_erase_start(NRF_NVMC_Type *p_reg, uint32_t page_addr)
Function for starting a single page erase in the Flash memory.
The NVMC mode must be correctly configured with nrf_nvmc_mode_set before starting the erase operation.
- Parameters
p_reg – [in] Pointer to the structure of registers of the peripheral.
page_addr – [in] Address of the first word of the page to erase.
-
NRF_STATIC_INLINE void nrf_nvmc_uicr_erase_start(NRF_NVMC_Type *p_reg)
Function for starting the user information configuration registers (UICR) erase.
- Parameters
p_reg – [in] Pointer to the structure of registers of the peripheral.
-
NRF_STATIC_INLINE void nrf_nvmc_erase_all_start(NRF_NVMC_Type *p_reg)
Function for starting the erase of the whole NVM, including UICR.
This function purges all user code.
- Parameters
p_reg – [in] Pointer to the structure of registers of the peripheral.
-
NRF_STATIC_INLINE void nrf_nvmc_partial_erase_duration_set(NRF_NVMC_Type *p_reg, uint32_t duration_ms)
Function for configuring the page partial erase duration in milliseconds.
- Parameters
p_reg – [in] Pointer to the structure of registers of the peripheral.
duration_ms – [in] Page partial erase duration in milliseconds.
-
NRF_STATIC_INLINE uint32_t nrf_nvmc_partial_erase_duration_get(NRF_NVMC_Type const *p_reg)
Function for getting the current setting for the page partial erase duration.
- Parameters
p_reg – [in] Pointer to the structure of registers of the peripheral.
- Return values
Interval – duration setting in milliseconds.
-
NRF_STATIC_INLINE void nrf_nvmc_page_partial_erase_start(NRF_NVMC_Type *p_reg, uint32_t page_addr)
Function for starting a partial erase operation.
It must be called successively until the page erase time is reached.
- Parameters
p_reg – [in] Pointer to the structure of registers of the peripheral.
page_addr – [in] Address of the first word of the page to erase.
-
NRF_NVMC_PARTIAL_ERASE_PRESENT