Corrected "Unknown target family" error for new AVR EA targets.

This commit is contained in:
Nav
2023-05-12 19:08:52 +01:00
parent 0ed36ae48e
commit efeb5ad48c
3 changed files with 8 additions and 0 deletions

View File

@@ -950,6 +950,12 @@ namespace Bloom::DebugToolDrivers::Protocols::CmsisDap::Edbg::Avr
{PhysicalInterface::UPDI, Avr8ConfigVariant::UPDI}, {PhysicalInterface::UPDI, Avr8ConfigVariant::UPDI},
} }
}, },
{
Family::EA,
{
{PhysicalInterface::UPDI, Avr8ConfigVariant::UPDI},
}
},
}); });
} }

View File

@@ -10,5 +10,6 @@ namespace Bloom::Targets::Microchip::Avr::Avr8Bit
DB, DB,
DA, DA,
DD, DD,
EA,
}; };
} }

View File

@@ -177,6 +177,7 @@ namespace Bloom::Targets::Microchip::Avr::Avr8Bit::TargetDescription
{"avr da", Family::DA}, {"avr da", Family::DA},
{"avr db", Family::DB}, {"avr db", Family::DB},
{"avr dd", Family::DD}, {"avr dd", Family::DD},
{"avr ea", Family::EA},
}; };
}; };