Added Microchip namespace to EDBG debug tool classes

This commit is contained in:
Nav
2023-11-18 23:50:08 +00:00
parent 1600888624
commit 516892f7eb
21 changed files with 29 additions and 29 deletions

View File

@@ -311,55 +311,55 @@ namespace TargetController
{
"atmel-ice",
[] {
return std::make_unique<DebugToolDrivers::AtmelIce>();
return std::make_unique<DebugToolDrivers::Microchip::AtmelIce>();
}
},
{
"power-debugger",
[] {
return std::make_unique<DebugToolDrivers::PowerDebugger>();
return std::make_unique<DebugToolDrivers::Microchip::PowerDebugger>();
}
},
{
"snap",
[] {
return std::make_unique<DebugToolDrivers::MplabSnap>();
return std::make_unique<DebugToolDrivers::Microchip::MplabSnap>();
}
},
{
"pickit-4",
[] {
return std::make_unique<DebugToolDrivers::MplabPickit4>();
return std::make_unique<DebugToolDrivers::Microchip::MplabPickit4>();
}
},
{
"xplained-pro",
[] {
return std::make_unique<DebugToolDrivers::XplainedPro>();
return std::make_unique<DebugToolDrivers::Microchip::XplainedPro>();
}
},
{
"xplained-mini",
[] {
return std::make_unique<DebugToolDrivers::XplainedMini>();
return std::make_unique<DebugToolDrivers::Microchip::XplainedMini>();
}
},
{
"xplained-nano",
[] {
return std::make_unique<DebugToolDrivers::XplainedNano>();
return std::make_unique<DebugToolDrivers::Microchip::XplainedNano>();
}
},
{
"curiosity-nano",
[] {
return std::make_unique<DebugToolDrivers::CuriosityNano>();
return std::make_unique<DebugToolDrivers::Microchip::CuriosityNano>();
}
},
{
"jtagice3",
[] {
return std::make_unique<DebugToolDrivers::JtagIce3>();
return std::make_unique<DebugToolDrivers::Microchip::JtagIce3>();
}
},
{