2.69.6 NVM_DoubleWordWrite Function

C

bool NVM_DoubleWordWrite( uint32_t *data, const uint32_t address );

Summary

Writes two words into the Flash.

Description

Writes two words (8 bytes) at the given address.

Precondition

None

Parameters

ParamDescription
dataPointer to the buffer which holds data to be written.
addressAddress at which the data will be written.

Returns

Always return true.

Example

NVM_DoubleWordWrite(data_to_fill, 0x9D100000);