Corrected infinite recursion bug with EDBG Avr8 memory read implementation

This commit is contained in:
Nav
2021-04-07 23:30:30 +01:00
parent 509ff084cd
commit fae2a2af34
4 changed files with 47 additions and 31 deletions

View File

@@ -85,6 +85,12 @@ namespace Bloom
return std::make_unique<PowerDebugger>();
}
},
{
"snap",
[]() -> std::unique_ptr<DebugTool> {
return std::make_unique<MplabSnap>();
}
},
};
}