Gerber P&P file: remove BGA option from TO.CMnt attribute.

This commit is contained in:
jean-pierre charras 2019-11-10 14:29:08 +01:00
parent eadcb5de5e
commit c1f88b2d9c
2 changed files with 2 additions and 3 deletions

View File

@ -666,7 +666,7 @@ wxString GBR_CMP_PNP_METADATA::FormatCmpPnPMetadata()
wxString mounType[] =
{
"Other", "SMD", "BGA", "TH"
"Other", "SMD", "TH"
};
if( !m_Manufacturer.IsEmpty() )

View File

@ -41,7 +41,7 @@
* %TO.CMPN,<string> Manufacturer part number
* %TO.Cpkg,<string> Package, as per IPC-7351
* %TO.CVal,<string> Value, a string. E.g. 220nF
* %TO.CMnt,<string> Mount type: (SMD|BGA|TH|Other)
* %TO.CMnt,<string> Mount type: (SMD|TH|Other)
* %TO.CFtp,<string> Footprint name, a string. E.g. LQFP-100_14x14mm_P0.5mm
This is the footprint name coming from the CAD tool libraries.
* %TO.CPgN,<string> Package name, like the JEDEC JEP95 standard.
@ -59,7 +59,6 @@ public:
{
MOUNT_TYPE_UNSPECIFIED,
MOUNT_TYPE_SMD,
MOUNT_TYPE_BGA,
MOUNT_TYPE_TH
};