1.5.5.4.22 SRV_FU_DataRead Function

C

void SRV_FU_DataRead(uint32_t address, uint8_t *buffer, uint16_t size);

Summary

Reads image from memory.

Description

This function is used to read the image from memory.

Parameters

ParametersDescription
addressImage address to read
bufferPointer to the buffer to store the information
sizeNumber of bytes to read

Returns

None.

Example

    uint32_t image[100];
    SRV_FU_DataRead(0x100, &image, sizeof(image));

Remarks

This function is called by the PRIME stack.