Construct an AVR8 TDF via a TargetSignature object, as opposed to the signature hex value.

This commit is contained in:
Nav
2021-06-03 00:25:54 +01:00
parent 5f580cc387
commit 104ec95a65
4 changed files with 6 additions and 5 deletions

View File

@@ -69,7 +69,7 @@ void Avr8::postPromotionConfigure() {
void Avr8::loadPartDescription() {
auto targetSignature = this->getId();
auto partDescription = TargetDescription::TargetDescriptionFile(
targetSignature.toHex(),
targetSignature,
(!this->name.empty()) ? std::optional(this->name) : std::nullopt
);