Added SDI physical interface

This commit is contained in:
Nav
2024-10-03 22:55:40 +01:00
parent 98ba68d1a6
commit ca498c64c2
5 changed files with 7 additions and 0 deletions

View File

@@ -162,6 +162,7 @@ namespace Targets::TargetDescription
{"jtag", TargetPhysicalInterface::JTAG},
{"pdi", TargetPhysicalInterface::PDI},
{"isp", TargetPhysicalInterface::ISP},
{"sdi", TargetPhysicalInterface::SDI},
};
auto output = std::set<TargetPhysicalInterface>{};

View File

@@ -9,6 +9,7 @@ namespace Targets
{TargetPhysicalInterface::PDI, "PDI"},
{TargetPhysicalInterface::JTAG, "JTAG"},
{TargetPhysicalInterface::UPDI, "UPDI"},
{TargetPhysicalInterface::SDI, "SDI"},
};
}
}

View File

@@ -13,6 +13,7 @@ namespace Targets
DEBUG_WIRE,
PDI,
UPDI,
SDI,
};
/**