2.72.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
| 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
NVM_DoubleWordWrite(data_to_fill, 0x9D100000);
