read an arbitrary amount of bytes
| 169 | |
| 170 | /// read an arbitrary amount of bytes |
| 171 | void read(void* address, uint32_t length, uint8_t* buffer) |
| 172 | { |
| 173 | memcpy(buffer, (void*)address, length); |
| 174 | }; |
| 175 | /// write an arbitrary amount of bytes |
| 176 | void write(void* address, uint32_t length, uint8_t* buffer) |
| 177 | { |
no outgoing calls
no test coverage detected