2.102.19 SEFCx_UserSignatureWrite Function

C

bool SEFCx_UserSignatureWrite(void *data, uint32_t length, SEFC_USERSIGNATURE_BLOCK block, SEFC_USERSIGNATURE_PAGE page);

Summary

Writes the user signature of length bytes

Description

This function writes the user signature of the length bytes at the given block number and page number

Precondition

None.

Parameters

ParamDescription
datauser signature
lengthlength of the user signature
blockblock number
pagepage number

Returns

true: request successful

false: request failed

Example

static uint8_t userSignBuffWr[USERSIGN_BUFFER_SIZE];          
// Write User Signature
SEFC0_UserSignatureWrite((uint32_t *)userSignBuffWr, sizeof(userSignBuffWr) >> 2, BLOCK_0, PAGE_0);

Remarks

None.