1.6.16.2 1.7.17.2 1.10.14.2 1.11.15.2 1.12.15.2 1.13.14.2 1.14.11.2 1.15.12.2 1.16.11.2 1.17.11.2 1.18.11.2 1.19.11.2 1.20.11.2 1.21.12.2 1.22.16.2 1.23.15.2 1.24.13.2 NVM_Read Function
C
bool NVM_Read( uint32_t *data, uint32_t length, uint32_t address )
Summary
Reads length number of bytes from a given address in FLASH memory.
Description
Reads length number of bytes from a given address in FLASH memory into the user buffer.
Precondition
None
Parameters
Param | Description |
---|---|
data | pointer to user data buffer |
length | Number of bytes to read |
address | FLASH address to be read from |
Returns
Always return true.
Example
uint8_t CACHE_ALIGN buffer[256]; NVM_Read( (uint32_t *) buffer, 256, 0x9D100000);