1.5.5.4.15 SRV_FU_Start Function
C
void SRV_FU_Start(SRV_FU_INFO *fuInfo);
Summary
Starts the firmware upgrade process.
Description
This function is used to start the firmware upgrade process by initializing and unlocking the memory.
Precondition
The SRV_FU_Initialize function should have been called before calling this function..
Parameters
Param | Description |
---|---|
fuInfo |
Pointer to the firmware upgrade information |
Returns
None.
Example
SRV_FU_INFO fuInfo;
fuInfo.imageSize = 0x1000;
fuInfo.pageSize = 192;
fuInfo.signAlgorithm = SRV_FU_SIGNATURE_ALGO_NO_SIGNATURE;
fuInfo.signLength = 0;
SRV_FU_Start(&fuInfo);
Remarks
This function is called by the PRIME stack.