parent
82529e71e0
commit
33aad3524b
|
@ -455,6 +455,11 @@ static uint64_t dbus_read(struct target *target, uint16_t address)
|
|||
dbus_status_t status;
|
||||
uint16_t address_in;
|
||||
|
||||
/* If the previous read/write was to the same address, we will get the read data
|
||||
* from the previous access.
|
||||
* While somewhat nonintuitive, this is an efficient way to get the data.
|
||||
*/
|
||||
|
||||
unsigned i = 0;
|
||||
do {
|
||||
status = dbus_scan(target, &address_in, &value, DBUS_OP_READ, address, 0);
|
||||
|
|
Loading…
Reference in New Issue