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

@@ -23,15 +23,25 @@ namespace Bloom::Targets
DIP,
/**
* Small outline integrated circuit (SOIC) package.
* "Small outline integrated circuit" package (SOIC).
*
* Because of the similarities between SOIC and DIP, Insight treats SOIC packages as DIP packages. That is,
* it uses the same package widget.
*/
SOIC,
/**
* "Shrink small outline" package (SSOP)
*
* Because of the similarities between this and DIP, Insight treats SSOP packages as DIP packages. That is,
* it uses the same package widget.
*/
SSOP,
/**
* Quad flat no-lead (QFN) package
*
* Because of the similarities between this and QFP, Insight treats QFN packages as QFP.
*/
QFN,
};