1.3.15.9 1.5.14.9 NVMCTRL_DATA_FLASH_Read Function
C
bool NVMCTRL_DATA_FLASH_Read( uint32_t *data, uint32_t length, const uint32_t address)
Summary
Reads length number of bytes from a given address in Data FLASH memory.
Description
Reads length number of bytes from a given address in Data FLASH memory into the user buffer.
Precondition
None
Parameters
Param | Description |
---|---|
data | pointer to user data buffer |
length | Number of bytes to read |
address | Data FLASH address to be read from |
Returns
Always returns true.
Example
uint8_t buffer[256]; NVMCTRL_DATA_FLASH_Read( (uint32_t *) buffer, 256, 0x20000);