Disabled masked read memory commands for the Xplained Pro debug tool (the tool was reporting a 'not supported' error)

This commit is contained in:
Nav
2021-12-25 21:00:05 +00:00
parent 82c036cc22
commit 03bc17a225

View File

@@ -40,6 +40,9 @@ void XplainedPro::init() {
*/ */
this->edbgAvr8Interface->setMaximumMemoryAccessSizePerRequest(256); this->edbgAvr8Interface->setMaximumMemoryAccessSizePerRequest(256);
// Masked read memory commands are not available on the Xplained Pro debug tool.
this->edbgAvr8Interface->setAvoidMaskedMemoryRead(true);
this->setInitialised(true); this->setInitialised(true);
} }