1.33.14.2 RAM_Write Function
C
bool RAM_Write( uint32_t *data, uint32_t length, uint32_t address )
Summary
Write length number of bytes to a given address in RAM.
Description
Write length number of bytes to a given address in RAM from the user buffer.
Precondition
None
Parameters
Param | Description |
---|---|
data | pointer to user data buffer |
length | Number of bytes to write |
address | RAM address to write to |
Returns
Always returns true.
Example
uint8_t buffer[256]; RAM_Write( (uint32_t *) buffer, 256, 0x20000000);