1.34.5.2 1.35.4.2 1.36.6.2 EFC_Read Function
C
bool EFC_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 returns true.
Example
uint8_t buffer[256]; EFC_Read( (uint32_t *)buffer, 256, 0x500000);