Bypass cache flag in ReadMemory TC command

This commit is contained in:
Nav
2023-09-22 18:21:26 +01:00
parent 8c2fe4e619
commit fdb6dc006d
6 changed files with 16 additions and 1 deletions

View File

@@ -62,6 +62,7 @@ void CaptureMemorySnapshot::run(TargetControllerService& targetControllerService
(memorySize - this->data->size()) >= readSize
? readSize
: static_cast<Targets::TargetMemorySize>(memorySize - this->data->size()),
true,
{}
);

View File

@@ -43,6 +43,7 @@ void ReadTargetMemory::run(TargetControllerService& targetControllerService) {
(this->size - data.size()) >= readSize
? readSize
: static_cast<Targets::TargetMemorySize>(this->size - data.size()),
true,
this->excludedAddressRanges
);