1.3.20.2 1.4.18.2 1.5.19.2 1.6.19.2 1.7.20.2 1.9.16.2 1.10.18.2 1.11.18.2 1.12.19.2 1.13.17.2 1.14.12.2 1.15.13.2 1.16.15.2 1.17.15.2 1.18.15.2 1.19.15.2 1.20.15.2 1.21.16.2 1.22.20.2 1.23.19.2 1.24.16.2 1.25.15.2 1.27.15.2 1.28.18.2 1.29.19.2 1.30.14.2 1.31.14.2 1.32.22.2 1.33.14.2 1.34.13.2 1.35.9.2 1.36.12.2 1.37.13.2 1.38.18.2 1.39.15.2 1.40.17.2 1.41.14.2 1.42.13.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);