Files
BloomPatched/src/Targets/TargetPhysicalInterface.cpp
2024-10-03 22:56:13 +01:00

16 lines
546 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"},
{TargetPhysicalInterface::SDI, "SDI"},
};
}
}