1.16.11.4 NVM_WordWrite Function
C
bool NVM_WordWrite( uint32_t data, const uint32_t address );
Summary
Writes One word into the Flash.
Description
Writes one word (4 bytes) at the given address.
Precondition
None
Parameters
Param | Description |
---|---|
data | Data to be written. |
address | Address at which the data will be written. |
Returns
Always return true.
Example
NVM_WordWrite(data_to_fill, 0x9D100000);