15 lines
497 B
C++
15 lines
497 B
C++
#include "TargetPhysicalInterface.hpp"
|
|
|
|
namespace Targets
|
|
{
|
|
std::map<TargetPhysicalInterface, std::string> getPhysicalInterfaceNames() {
|
|
return std::map<TargetPhysicalInterface, std::string>({
|
|
{TargetPhysicalInterface::ISP, "ISP"},
|
|
{TargetPhysicalInterface::DEBUG_WIRE, "debugWire"},
|
|
{TargetPhysicalInterface::PDI, "PDI"},
|
|
{TargetPhysicalInterface::JTAG, "JTAG"},
|
|
{TargetPhysicalInterface::UPDI, "UPDI"},
|
|
});
|
|
}
|
|
}
|