Bypass cache flag in ReadMemory TC command
This commit is contained in:
@@ -62,6 +62,7 @@ void CaptureMemorySnapshot::run(TargetControllerService& targetControllerService
|
||||
(memorySize - this->data->size()) >= readSize
|
||||
? readSize
|
||||
: static_cast<Targets::TargetMemorySize>(memorySize - this->data->size()),
|
||||
true,
|
||||
{}
|
||||
);
|
||||
|
||||
|
||||
@@ -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
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user