2.44.4 FCW_SingleWordWrite Function
C
bool FCW_SingleWordWrite( uint32_t *data, uint32_t address );
Summary
Writes Two Words into the Flash.
Description
Writes One Word (4 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[1]; data[0] = 0x12345678; FCW_SingleWordWrite((uint32_t *)data, 0xC088608U);
Remarks
This Feature may not be available on all devices. Refer to device Datasheet for more information.