1.3.20.1 1.4.18.1 1.5.19.1 1.6.19.1 1.7.20.1 1.9.16.1 1.10.18.1 1.11.18.1 1.12.19.1 1.13.17.1 1.14.12.1 1.15.13.1 1.16.15.1 1.17.15.1 1.18.15.1 1.19.15.1 1.20.15.1 1.21.16.1 1.22.20.1 1.23.19.1 1.24.16.1 1.25.15.1 1.27.15.1 1.28.18.1 1.29.19.1 1.30.14.1 1.31.14.1 1.32.22.1 1.33.14.1 1.34.13.1 1.35.9.1 1.36.12.1 1.37.13.1 1.38.18.1 1.39.15.1 1.40.17.1 1.41.14.1 1.42.13.1 RAM_Read Function
C
bool RAM_Read( uint32_t *data, uint32_t length, uint32_t address )
Summary
Reads length number of bytes from a given address in RAM.
Description
Reads length number of bytes from a given address in RAM into the user buffer.
Precondition
None
Parameters
Param | Description |
---|---|
data | pointer to user data buffer |
length | Number of bytes to read |
address | RAM address to be read from |
Returns
Always returns true.
Example
uint8_t buffer[256]; RAM_Read( (uint32_t *) buffer, 256, 0x20000000);