1.5.5.4.19 SRV_FU_CfgRead Function
C
void SRV_FU_CfgRead(void *dst, uint16_t size);
Summary
Reads the firmware upgrade information.
Description
This function is used to read the firmware upgrade information, which is stored out of the PRIME stack.
Precondition
The SRV_FU_Initialize function should have been called before calling this function..
Parameters
Param | Description |
---|---|
dst |
Pointer to the buffer to store the information |
size |
Number of bytes to read |
Returns
None.
Example
uint32_t fuData[3];
SRV_FU_CfgRead(&fuData, sizeof(fuData));
Remarks
This function is called by the PRIME stack.