Fixed bug with AVR8 physical interface verification

This commit is contained in:
Nav
2022-09-18 15:01:39 +01:00
parent 3dece376ce
commit 35b49aae25

View File

@@ -400,7 +400,7 @@ namespace Bloom::Targets::Microchip::Avr::Avr8Bit::TargetDescription
auto interfaceNamesToInterfaces = std::map<std::string, PhysicalInterface>({
{"updi", PhysicalInterface::UPDI},
{"debugwire", PhysicalInterface::DEBUG_WIRE},
{"jtag", PhysicalInterface::DEBUG_WIRE},
{"jtag", PhysicalInterface::JTAG},
{"pdi", PhysicalInterface::PDI},
{"isp", PhysicalInterface::ISP},
});