Skip to content

Commit

Permalink
Corrected "Unknown target family" error for new AVR EA targets.
Browse files Browse the repository at this point in the history
  • Loading branch information
navnavnav committed May 12, 2023
1 parent 0ed36ae commit efeb5ad
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -950,6 +950,12 @@ namespace Bloom::DebugToolDrivers::Protocols::CmsisDap::Edbg::Avr
{PhysicalInterface::UPDI, Avr8ConfigVariant::UPDI},
}
},
{
Family::EA,
{
{PhysicalInterface::UPDI, Avr8ConfigVariant::UPDI},
}
},
});
}

Expand Down
1 change: 1 addition & 0 deletions src/Targets/Microchip/AVR/AVR8/Family.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,6 @@ namespace Bloom::Targets::Microchip::Avr::Avr8Bit
DB,
DA,
DD,
EA,
};
}
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ namespace Bloom::Targets::Microchip::Avr::Avr8Bit::TargetDescription
{"avr da", Family::DA},
{"avr db", Family::DB},
{"avr dd", Family::DD},
{"avr ea", Family::EA},
};
};

Expand Down

0 comments on commit efeb5ad

Please sign in to comment.