Included SSOP target package and updated the Insight window to use the DIP widget for SOIC, SSOP and DIP packages.

Also updated the Insight window to use the QFP widget for QFN packages.
This commit is contained in:
Nav
2021-06-20 22:55:48 +01:00
parent c93c012cbb
commit 57acda4b3b
3 changed files with 26 additions and 7 deletions

View File

@@ -245,6 +245,9 @@ void Avr8::loadTargetVariants() {
} else if (tdVariant.package.find("SOIC") == 0) {
targetVariant.package = TargetPackage::SOIC;
} else if (tdVariant.package.find("SSOP") == 0) {
targetVariant.package = TargetPackage::SSOP;
}
if (!tdPinoutsByName.contains(tdVariant.pinoutName)) {