1.6.16.4 1.7.17.4 1.10.14.5 1.11.15.5 1.12.15.5 1.13.14.5 1.22.16.5 1.23.15.5 NVM_QuadWordWrite Function
C
bool NVM_QuadWordWrite( uint32_t *data, const uint32_t address );
Summary
Writes four words into the Flash.
Description
Writes four words (16 bytes) at the given address.
Precondition
None
Parameters
Param | Description |
---|---|
data | Pointer to the buffer which holds data to be written. |
address | Address at which the data will be written. |
Returns
Always return true.
Example
uint32_t data[4]; data[0] = 0x12345678; data[1] = 0x87654321; data[2] = 0x8ABCDE21; data[3] = 0x90ABCDEF; NVM_QuadWordWrite((uint32_t *)data, 0x9D100000);
Remarks
This Feature may not be available on all devices. Refer to device Datasheet for more information.