2.102.2 SEFCx_Read Function

C

bool SEFCx_Read( uint32_t *data, uint32_t length, uint32_t address ) // x - Instance of the SEFC peripheral

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

ParamDescription
datapointer to user data buffer
lengthNumber of bytes to read
addressFLASH address to be read from

Returns

Always returns true.

Example

uint8_t buffer[256];

SEFC0_Read( (uint32_t *)buffer, 256, 0x500000);